...

/

Supplementing Conventions in Entity Framework Core

Supplementing Conventions in Entity Framework Core

Learn about supplementing or overriding the default conventions in EF Core.

Overview

The default conventions handle the most common configurations in the EF Core model, such as:

  • Determining the table name of an entity.
  • Determining the column name of an entity.
  • Determining which property becomes the primary key of an entity.
  • Determining which property becomes the foreign key in a relationship.
  • Determining which entities make up a relationship.

Sometimes, the default conventions do not capture our model adequately, and we may need to configure the entities to meet our objectives. We can supplement or override the default conventions through two methods.

Data annotations

Data annotations are simple attribute-based configuration methods where different .NET attributes are applied to domain classes and properties to configure the model. The attributes are included in the System.ComponentModel.DataAnnotations and System.ComponentModel.DataAnnotations.Schema namespaces.

Fluent API

We can override the ...