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
IModelThe model.
Returns
Remarks
The implementation must be thread-safe.