EntityKey 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
EntityKey() |
初始化 EntityKey 類別的新執行個體。 |
EntityKey(String, IEnumerable<KeyValuePair<String,Object>>) |
使用實體集名稱和泛型 EntityKey 集合,初始化 KeyValuePair 類別的新執行個體。 |
EntityKey(String, IEnumerable<EntityKeyMember>) |
使用實體集名稱和 EntityKey 物件的 IEnumerable<T> 集合,初始化 EntityKeyMember 類別的新執行個體。 |
EntityKey(String, String, Object) |
使用實體集名稱和特定實體索引鍵組,初始化 EntityKey 類別的新執行個體。 |
EntityKey()
EntityKey(String, IEnumerable<KeyValuePair<String,Object>>)
使用實體集名稱和泛型 EntityKey 集合,初始化 KeyValuePair 類別的新執行個體。
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public EntityKey (string qualifiedEntitySetName, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object>> entityKeyValues);
new System.Data.Entity.Core.EntityKey : string * seq<System.Collections.Generic.KeyValuePair<string, obj>> -> System.Data.Entity.Core.EntityKey
Public Sub New (qualifiedEntitySetName As String, entityKeyValues As IEnumerable(Of KeyValuePair(Of String, Object)))
參數
- entityKeyValues
- IEnumerable<KeyValuePair<String,Object>>
泛型 KeyValuePair 集合。每個索引鍵/值組都有一個屬性名稱做為索引鍵,而該屬性的值做為值。 每個屬於 EntityKey 的屬性都應該有一對。 雖然索引鍵/值組的順序不重要,但是每個索引鍵屬性都應該包含在內。 這些屬性名稱是未以實體類型名稱或結構描述名稱限定的簡單名稱。
- 屬性
適用於
EntityKey(String, IEnumerable<EntityKeyMember>)
使用實體集名稱和 EntityKey 物件的 IEnumerable<T> 集合,初始化 EntityKeyMember 類別的新執行個體。
public EntityKey (string qualifiedEntitySetName, System.Collections.Generic.IEnumerable<System.Data.Entity.Core.EntityKeyMember> entityKeyValues);
new System.Data.Entity.Core.EntityKey : string * seq<System.Data.Entity.Core.EntityKeyMember> -> System.Data.Entity.Core.EntityKey
Public Sub New (qualifiedEntitySetName As String, entityKeyValues As IEnumerable(Of EntityKeyMember))
參數
- entityKeyValues
- IEnumerable<EntityKeyMember>
要用來初始化索引鍵之 IEnumerable<T> 物件的 EntityKeyMember 集合。
適用於
EntityKey(String, String, Object)
使用實體集名稱和特定實體索引鍵組,初始化 EntityKey 類別的新執行個體。
public EntityKey (string qualifiedEntitySetName, string keyName, object keyValue);
new System.Data.Entity.Core.EntityKey : string * string * obj -> System.Data.Entity.Core.EntityKey
Public Sub New (qualifiedEntitySetName As String, keyName As String, keyValue As Object)