Share via


EntityTypeExtensions.GetDeclaredIndexes(IEntityType) メソッド

定義

指定 IEntityTypeした で宣言されているすべてのインデックスを取得します。

このメソッドは、基本型で宣言されたインデックスを返しません。 同じインデックスを複数回処理しないように、すべてのエンティティ型を反復処理する場合に便利です。 を使用して GetForeignKeys() 、基本型で宣言されたインデックスも返します。

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

パラメーター

entityType
IEntityType

エンティティの型。

戻り値

宣言されたインデックス。

適用対象