Langage

ObjectIdentifier Constructeurs

Définition

Surcharges

Nom Description
ObjectIdentifier(IEnumerable<String>)

Crée un identificateur d’objet avec un nom.

ObjectIdentifier(IList<String>)

Crée un identificateur d’objet avec un nom.

ObjectIdentifier(String[])

Crée un identificateur d’objet avec un nom.

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

Crée un identificateur d’objet avec un nom qui inclut des composants externes.

ObjectIdentifier(IEnumerable<String>)

Crée un identificateur d’objet avec un nom.

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

Paramètres

parts
IEnumerable<String>

Parties de l’identificateur

S’applique à

ObjectIdentifier(IList<String>)

Crée un identificateur d’objet avec un nom.

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

Paramètres

parts
IList<String>

Parties de l’identificateur

S’applique à

ObjectIdentifier(String[])

Crée un identificateur d’objet avec un nom.

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

Paramètres

parts
String[]

Parties de l’identificateur

S’applique à

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

Crée un identificateur d’objet avec un nom qui inclut des composants externes.

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

Paramètres

externalParts
IList<String>

Composants de référence externes - utilisés dans 3 ou 4 références de parties à des objets dans d’autres bases de données ou serveurs

parts
IList<String>

Parties de l’identificateur

S’applique à