IConventionEntityTypeBuilder.CanRemoveIndex(IConventionIndex, Boolean) Method

Definition

Returns a value indicating whether the index can be removed from this entity type.

public bool CanRemoveIndex (Microsoft.EntityFrameworkCore.Metadata.IConventionIndex index, bool fromDataAnnotation = false);
abstract member CanRemoveIndex : Microsoft.EntityFrameworkCore.Metadata.IConventionIndex * bool -> bool
Public Function CanRemoveIndex (index As IConventionIndex, Optional fromDataAnnotation As Boolean = false) As Boolean

Parameters

index
IConventionIndex

The index to remove.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

true if the entity type can be marked as keyless.

Applies to