Share via


ObjectIdentifier Constructors

Definition

Overloads

ObjectIdentifier(IEnumerable<String>)

Creates a object identifier with a name.

ObjectIdentifier(IList<String>)

Creates a object identifier with a name.

ObjectIdentifier(String[])

Creates a object identifier with a name.

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

Creates a object identifier with a name that includes external parts.

ObjectIdentifier(IEnumerable<String>)

Creates a object identifier with a name.

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))

Parameters

parts
IEnumerable<String>

The parts of the identifier

Applies to

ObjectIdentifier(IList<String>)

Creates a object identifier with a name.

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))

Parameters

parts
IList<String>

The parts of the identifier

Applies to

ObjectIdentifier(String[])

Creates a object identifier with a name.

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

Parameters

parts
String[]

The parts of the identifier

Applies to

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

Creates a object identifier with a name that includes external parts.

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))

Parameters

externalParts
IList<String>

External reference parts - used in 3 or 4 part references to objects in other databases or servers

parts
IList<String>

The parts of the identifier

Applies to