MutableEntityTypeExtensions.GetDeclaredIndexes(IMutableEntityType) Method

Definition

Gets all indexes declared on the given IMutableEntityType.

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 GetForeignKeys() to also return indexes declared on base types.

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

Parameters

entityType
IMutableEntityType

The entity type.

Returns

Declared indexes.

Applies to