ConventionEntityTypeExtensions.GetDeclaredIndexes 方法

定义

获取在给定 IConventionEntityType的 上声明的所有索引。

此方法不返回在基类型上声明的索引。 循环访问所有实体类型以避免多次处理同一索引时,此功能非常有用。 使用 GetForeignKeys() 还返回在基类型上声明的索引。

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

参数

entityType
IConventionEntityType

实体类型。

返回

声明的索引。

适用于