ModelStore.CreateIdentifier 方法 (IList<String>, ICollection<String>)
使用提供的外部部分名稱清單、區分大小寫的指示和部分名稱的集合,建立唯一模型識別項。
命名空間: Microsoft.Data.Schema.SchemaModel
組件: Microsoft.Data.Schema (在 Microsoft.Data.Schema.dll 中)
語法
'宣告
Public Function CreateIdentifier ( _
externalParts As IList(Of String), _
parts As ICollection(Of String) _
) As ModelIdentifier
public ModelIdentifier CreateIdentifier(
IList<string> externalParts,
ICollection<string> parts
)
public:
ModelIdentifier^ CreateIdentifier(
IList<String^>^ externalParts,
ICollection<String^>^ parts
)
member CreateIdentifier :
externalParts:IList<string> *
parts:ICollection<string> -> ModelIdentifier
public function CreateIdentifier(
externalParts : IList<String>,
parts : ICollection<String>
) : ModelIdentifier
參數
- externalParts
型別:System.Collections.Generic.IList<String>
外部參考名稱部分的 IList<T>。
- parts
型別:System.Collections.Generic.ICollection<String>
部分名稱的 ICollection<T>。
傳回值
型別:Microsoft.Data.Schema.SchemaModel.ModelIdentifier
唯一的識別項。如果具有相同部分的識別項已經存在,則會傳回這個識別項。
備註
名為 "dbo.MyTable" 的項目可由含有 "dbo" 和 "MyTable" 的名稱部分陣列來表示。
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。