ObjectIdentifier 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
| 名称 | 说明 |
|---|---|
| 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))
参数
适用于
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))