ObjectIdentifier 생성자

정의

오버로드

Name Description
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>

식별자의 부분

적용 대상