Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
dotnet avatar

Model Building

  • 1 installs
  • 14.8k repo stars
  • Updated August 4, 2026
  • dotnet/efcore

Implementation-detail guide for EF Core model building internals: the convention system, ModelBuilder, runtime initialization, and compiled models.

About

A contributor-facing skill explaining EF Core's ConventionSet, key conventions, and runtime model construction. A developer uses it when changing conventions, ModelBuilder, ModelRuntimeInitializer, or RuntimeModel code.

  • Documents the ConventionSet and key discovery conventions for entities, keys, and relationships
  • Covers runtime annotation propagation and compiled-model filtering

Model Building by the numbers

  • 1 all-time installs (skills.sh)
  • Ranked #121 of 153 .NET & C# skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/dotnet/efcore --skill model-building

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1
repo stars14.8k
Last updatedAugust 4, 2026
Repositorydotnet/efcore

What it does

Implementation-detail guide for EF Core model building internals: the convention system, ModelBuilder, runtime initialization, and compiled models.

Files

SKILL.mdMarkdownGitHub ↗

Model Building, Conventions & Initialization

Covers model construction (conventions, fluent API, metadata hierarchy) and model initialization (runtime annotation propagation, compiled model filtering).

Convention System

ConventionSet (src/EFCore/Metadata/Conventions/ConventionSet.cs) holds List<I*Convention> for every metadata event. Key conventions in src/EFCore/Metadata/Conventions/:

  • DbSetFindingConvention — discovers entities from DbSet<T>
  • PropertyDiscoveryConvention — discovers properties from CLR types
  • KeyDiscoveryConvention — finds PKs (Id, TypeId)
  • RelationshipDiscoveryConvention — infers FKs from navigations
  • RuntimeModelConvention — creates optimized RuntimeModel from mutable model

Override ConfigureConventions(ModelConfigurationBuilder) to add/remove conventions.

Metadata Interface Hierarchy

IReadOnly*IMutable*IConvention*IRuntime*

Applies to: Model, EntityType, Property, Key, ForeignKey, Navigation, Index, etc. Builders follow: *BuilderIConvention*Builder.

Model Lifecycle

1. Mutable Model — built by ModelBuilder during OnModelCreating, made read-only by FinalizeModel() 2. Design-Time Model — finalized read-only Model that also contains design-time-only annotations used in migrations 3. Runtime Model — an optimized read-only model created by RuntimeModelConvention.ProcessModelFinalized(), does not contain design-time-only annotations

ModelRuntimeInitializer.Initialize() (called by DbContextServices.CreateModel()):

Initialize(model, designTime, validationLogger)
├─ FinalizeModel() if mutable
├─ Set ModelDependencies, InitializeModel
└─ RuntimeModelConvention creates RuntimeModel, copies/filters annotations

Complex Type Property Recursion

When processing properties in conventions or validation, remember that complex types can contain their own declared properties. Use GetFlattenedProperties() to iterate all properties (including on nested non-collection complex types) or manually recurse through GetDeclaredComplexProperties()complexProperty.ComplexType.

Adding a New Annotation

1. Add constant to CoreAnnotationNames and its AllNames 2. Filter in RuntimeModelConvention.ProcessModelAnnotations if it's a design-time-only annotation (only used in migration operations) 1. If it was filtered out, add logic to the getters that throws an exception if accessed on the runtime model 3. Filter in CSharpRuntimeAnnotationCodeGenerator.Generate if it can be computed lazily at runtime (e.g. based on other annotations) 4. Propagate in RelationalAnnotationProvider if used in up-migrations or the relational model and IMigrationsAnnotationProvider if used in down-migrations

Relational Model

RelationalModel (src/EFCore.Relational/Metadata/Internal/RelationalModel.cs) is a database-centric view of the EF model, mapping entity types to physical database objects: Tables, Views, Functions, Queries, and DefaultTables. DefaultTables are pseudo-table objects only used for FromSql queries.

Created lazily by RelationalModelRuntimeInitializer, accessed via model.GetRelationalModel(). Used by migrations (MigrationsModelDiffer), update and query pipelines.

RelationalAnnotationProvider populates annotations on relational model elements. Provider subclasses (e.g., SqlServerAnnotationProvider) add provider-specific annotations. IMigrationsAnnotationProvider controls annotations used in down-migration operations.

Model Validation

ModelValidator (src/EFCore/Infrastructure/ModelValidator.cs) and RelationalModelValidator (src/EFCore.Relational/Infrastructure/RelationalModelValidator.cs) run after model finalization, during ModelRuntimeInitializer.Initialize() between the pre- and post-validation InitializeModel calls.

Migration Snapshot Compatibility

Model-building changes can trigger spurious migrations for users who upgrade. Two causes:

1. New metadata written to the snapshot — old snapshots won't have it; MigrationsModelDiffer sees a diff. Fix: ensure absence of the annotation in an old snapshot is treated as the old default. 2. Annotation renamed or reinterpreted — old snapshots produce a different model. Fix: keep backward-compatible reading logic.

Inspect CSharpSnapshotGenerator (what gets written) and MigrationsModelDiffer (how absence is handled). Add a snapshot round-trip test in test/EFCore.Design.Tests/Migrations/ModelSnapshotSqlServerTest.cs.

Testing

AreaLocation
Convention unit teststest/EFCore.Tests/Metadata/Conventions/
Metadata unit teststest/EFCore.Tests/Metadata/Internal/
Model builder API teststest/EFCore.Specification.Tests/ModelBuilding/ModelBuilderTest*.cs
Relationship discovery teststest/EFCore.Specification.Tests/ModelBuilding101*.cs
Model validation teststest/EFCore.Tests/Infrastructure/ModelValidatorTest*.cs
Compiled model teststest/EFCore.Specification.Tests/Scaffolding/CompiledModelTestBase.cs

Validation

  • Model builds without InvalidOperationException during finalization
  • All new API is covered by tests
  • Compiled model baselines update cleanly with EF_TEST_REWRITE_BASELINES=1
  • ToString() on metadata objects shows concise contents without throwing exceptions
  • No spurious migration is generated against a project with an existing snapshot

Related skills

.NET & C#databases

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.