IConventionEntityTypeBuilder.CanHaveIndex Method

Definition

Returns a value indicating whether and index on the given properties can be added to this entity type.

public bool CanHaveIndex (System.Collections.Generic.IReadOnlyList<string> propertyNames, bool fromDataAnnotation = false);
abstract member CanHaveIndex : System.Collections.Generic.IReadOnlyList<string> * bool -> bool
Public Function CanHaveIndex (propertyNames As IReadOnlyList(Of String), Optional fromDataAnnotation As Boolean = false) As Boolean

Parameters

propertyNames
IReadOnlyList<String>

The names of the properties that make up the index.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

true if the index can be added.

Applies to