Entity Framework Core

Entity Framework Core (EF Core) is Microsoft’s modern ORM for .NET, mapping database tables to C# models with LINQ queries.

EF Core maps database tables to C# classes, enabling strongly-typed queries with LINQ and migrations for schema changes.

  • Works well with SQL Server
  • Supports raw SQL when needed
  • Be mindful of performance and query shape