IDesignTimeModel Interface

Definition

The metadata about the shape of entities, the relationships between them, and how they map to the database. Also includes all the information necessary to initialize the database.

public interface IDesignTimeModel
type IDesignTimeModel = interface
Public Interface IDesignTimeModel

Remarks

The service lifetime is Scoped. This means that each DbContext instance will use its own instance of this service. The implementation may depend on other services registered with any lifetime. The implementation does not need to be thread-safe.

See Implementation of database providers and extensions for more information and examples.

Properties

Model

Gets the metadata about the shape of entities, the relationships between them, and how they map to the database. Also includes all the information necessary to initialize the database.

Applies to