ConventionEntityTypeExtensions.GetDeclaredKeys(IConventionEntityType) 方法

定义

获取在给定 IEntityType的 上声明的所有键。

此方法不返回在基类型上声明的键。 循环访问所有实体类型以避免多次处理同一个键时,它很有用。 使用 GetKeys() 还返回在基类型上声明的键。

public static System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IConventionKey> GetDeclaredKeys (this Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType entityType);
static member GetDeclaredKeys : Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType -> seq<Microsoft.EntityFrameworkCore.Metadata.IConventionKey>
<Extension()>
Public Function GetDeclaredKeys (entityType As IConventionEntityType) As IEnumerable(Of IConventionKey)

参数

entityType
IConventionEntityType

实体类型。

返回

声明的密钥。

适用于