Table of Contents

Interface IModelFinalizedConvention

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

Represents an operation that should be performed after a model is finalized and can no longer be mutated.

public interface IModelFinalizedConvention : IConvention

Remarks

See Model building conventions for more information and examples.

Methods

ProcessModelFinalized(IModel)

Called after a model is finalized and can no longer be mutated.

IModel ProcessModelFinalized(IModel model)

Parameters

model IModel

The model.

Returns

IModel

Remarks

The implementation must be thread-safe.