言語

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>

識別子の部分

適用対象