ObjectIdentifier Constructores

Definición

Sobrecargas

Nombre Description
ObjectIdentifier(IEnumerable<String>)

Crea un identificador de objeto con un nombre.

ObjectIdentifier(IList<String>)

Crea un identificador de objeto con un nombre.

ObjectIdentifier(String[])

Crea un identificador de objeto con un nombre.

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

Crea un identificador de objeto con un nombre que incluye elementos externos.

ObjectIdentifier(IEnumerable<String>)

Crea un identificador de objeto con un nombre.

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

Parámetros

parts
IEnumerable<String>

Partes del identificador

Se aplica a

ObjectIdentifier(IList<String>)

Crea un identificador de objeto con un nombre.

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

Parámetros

parts
IList<String>

Partes del identificador

Se aplica a

ObjectIdentifier(String[])

Crea un identificador de objeto con un nombre.

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

Parámetros

parts
String[]

Partes del identificador

Se aplica a

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

Crea un identificador de objeto con un nombre que incluye elementos externos.

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

Parámetros

externalParts
IList<String>

Elementos de referencia externos: se usan en 3 o 4 referencias de partes a objetos de otras bases de datos o servidores

parts
IList<String>

Partes del identificador

Se aplica a