Table of Contents

Interface IIndexSortOrderChangedConvention

Namespace
Microsoft.EntityFrameworkCore.Metadata.Conventions
Assembly
Microsoft.EntityFrameworkCore.dll

Represents an operation that should be performed when the sort order of an index is changed.

public interface IIndexSortOrderChangedConvention : IConvention

Remarks

See Model building conventions for more information and examples.

Methods

ProcessIndexSortOrderChanged(IConventionIndexBuilder, IConventionContext<IReadOnlyList<bool>?>)

Called after the uniqueness for an index is changed.

void ProcessIndexSortOrderChanged(IConventionIndexBuilder indexBuilder, IConventionContext<IReadOnlyList<bool>?> context)

Parameters

indexBuilder IConventionIndexBuilder

The builder for the index.

context IConventionContext<IReadOnlyList<bool>>

Additional information associated with convention execution.