EntityTypeExtensions.GetDeclaredIndexes(IEntityType) Method

Definition

Gets all indexes declared on the given IEntityType.

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.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)

Parameters

entityType
IEntityType

The entity type.

Returns

Declared indexes.

Applies to