IReadOnlyEntityType.FindKey 方法

定義

多載

FindKey(IReadOnlyProperty)

取得指定屬性上定義的主要或替代索引鍵。 null如果未為指定的屬性定義索引鍵,則傳回 。

FindKey(IReadOnlyList<IReadOnlyProperty>)

取得在指定屬性上定義的主要或替代索引鍵。 null如果未為指定的屬性定義索引鍵,則傳回 。

FindKey(IReadOnlyProperty)

取得指定屬性上定義的主要或替代索引鍵。 null如果未為指定的屬性定義索引鍵,則傳回 。

public virtual Microsoft.EntityFrameworkCore.Metadata.IReadOnlyKey? FindKey (Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty property);
abstract member FindKey : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty -> Microsoft.EntityFrameworkCore.Metadata.IReadOnlyKey
override this.FindKey : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty -> Microsoft.EntityFrameworkCore.Metadata.IReadOnlyKey
Public Overridable Function FindKey (property As IReadOnlyProperty) As IReadOnlyKey

參數

property
IReadOnlyProperty

索引鍵定義所在的屬性。

傳回

如果未定義索引鍵,則為 null。

適用於

FindKey(IReadOnlyList<IReadOnlyProperty>)

取得在指定屬性上定義的主要或替代索引鍵。 null如果未為指定的屬性定義索引鍵,則傳回 。

public Microsoft.EntityFrameworkCore.Metadata.IReadOnlyKey? FindKey (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty> properties);
abstract member FindKey : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty> -> Microsoft.EntityFrameworkCore.Metadata.IReadOnlyKey
Public Function FindKey (properties As IReadOnlyList(Of IReadOnlyProperty)) As IReadOnlyKey

參數

properties
IReadOnlyList<IReadOnlyProperty>

組成索引鍵的屬性。

傳回

索引鍵,如果沒有定義,則 null 為 。

適用於