How to Use Fluent API in ASP NET CORE 6 0. Using Fluent API in Entity Framework Core 6.0

Опубликовано: 30 Сентябрь 2024
на канале: Macro Code
3,125
33

Entity Framework Core Fluent API is used to build model based on entity classes. We can also override the default Conventions of Entity Framework Core using Fluent API when targetting the database schema as Fluent API has higher precedence than conventions and data annotations.

Entity Framework Core Fluent API offers the following features.

1. Model Configuration: Configures an EF model to database mappings.
2. Entity Configuration: Configures PrimaryKey, AlternateKey, Index, table name, one-to-one, one-to-many, many-to-many relationships etc.
3. Property Configuration: Configures property to column mapping e.g. column name, default value, nullability, Foreignkey, data type, etc.