ObjectIdentifier 构造函数

定义

重载

名称 说明
ObjectIdentifier(IEnumerable<String>)

创建具有名称的对象标识符。

ObjectIdentifier(IList<String>)

创建具有名称的对象标识符。

ObjectIdentifier(String[])

创建具有名称的对象标识符。

ObjectIdentifier(IList<String>, IList<String>)

创建包含外部部件的名称的对象标识符。

ObjectIdentifier(IEnumerable<String>)

创建具有名称的对象标识符。

public ObjectIdentifier(System.Collections.Generic.IEnumerable<string> parts);
new Microsoft.SqlServer.Dac.Model.ObjectIdentifier : seq<string> -> Microsoft.SqlServer.Dac.Model.ObjectIdentifier
Public Sub New (parts As IEnumerable(Of String))

参数

parts
IEnumerable<String>

标识符的各个部分

适用于

ObjectIdentifier(IList<String>)

创建具有名称的对象标识符。

public ObjectIdentifier(System.Collections.Generic.IList<string> parts);
new Microsoft.SqlServer.Dac.Model.ObjectIdentifier : System.Collections.Generic.IList<string> -> Microsoft.SqlServer.Dac.Model.ObjectIdentifier
Public Sub New (parts As IList(Of String))

参数

parts
IList<String>

标识符的各个部分

适用于

ObjectIdentifier(String[])

创建具有名称的对象标识符。

public ObjectIdentifier(params string[] parts);
new Microsoft.SqlServer.Dac.Model.ObjectIdentifier : string[] -> Microsoft.SqlServer.Dac.Model.ObjectIdentifier
Public Sub New (ParamArray parts As String())

参数

parts
String[]

标识符的各个部分

适用于

ObjectIdentifier(IList<String>, IList<String>)

创建包含外部部件的名称的对象标识符。

public ObjectIdentifier(System.Collections.Generic.IList<string> externalParts, System.Collections.Generic.IList<string> parts);
new Microsoft.SqlServer.Dac.Model.ObjectIdentifier : System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> -> Microsoft.SqlServer.Dac.Model.ObjectIdentifier
Public Sub New (externalParts As IList(Of String), parts As IList(Of String))

参数

externalParts
IList<String>

外部引用部件 - 用于 3 或 4 部分对其他数据库或服务器中的对象的引用

parts
IList<String>

标识符的各个部分

适用于