IMutableEntityType.GetDeclaredIndexes Method

Definition

Gets all indexes declared on this entity type.

public virtual System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IMutableIndex> GetDeclaredIndexes ();
abstract member GetDeclaredIndexes : unit -> seq<Microsoft.EntityFrameworkCore.Metadata.IMutableIndex>
override this.GetDeclaredIndexes : unit -> seq<Microsoft.EntityFrameworkCore.Metadata.IMutableIndex>
Public Overridable Function GetDeclaredIndexes () As IEnumerable(Of IMutableIndex)

Returns

Declared indexes.

Remarks

This method does not return indexes declared on base types. It is useful when iterating over all entity types to avoid processing the same index more than once. Use GetIndexes() to also return indexes declared on base types.

Applies to