Microsoft.EntityFrameworkCore 11.0.0-preview.4.26230.115

Entity Framework Core (EF Core) is a modern object-database mapper that lets you build a clean, portable, and high-level data access layer with .NET (C#) across a variety of databases, including SQL Server (on-premises and Azure), SQLite, MySQL, PostgreSQL, Oracle, and Azure Cosmos DB. It supports LINQ queries, change tracking, updates, and schema migrations.

Getting started

Prerequisites

Make sure to install the same version of all EF Core packages shipped by Microsoft. For example, if version 5.0.3 of Microsoft.EntityFrameworkCore.SqlServer is installed, then all other Microsoft.EntityFrameworkCore.* packages must also be at 5.0.3.

Usage

To use Microsoft.EntityFrameworkCore in your application, you will typically need to create a class that inherits from DbContext, which represents your database session. You can then define classes that represent your database entities, and use LINQ queries to interact with the database.

Here's an example of how you might define a database context and an entity:

using Microsoft.EntityFrameworkCore;

public class MyDbContext : DbContext
{
    public DbSet<Customer> Customers { get; set; }
}

public class Customer
{
    public int Id { get; set; }
    public string Name { get; set; }
}

You can then use the MyDbContext class to interact with the database:

using var context = new MyDbContext();

// Add a new customer
context.Customers.Add(new Customer { Name = "John Doe" });
context.SaveChanges();

// Retrieve all customers
var customers = context.Customers.ToList();

Microsoft.EntityFrameworkCore supports multiple database providers, including SQL Server, MySQL, PostgreSQL, SQLite, and others. You will need to install the provider package for your chosen database. For example, to use SQL Server, you would install the Microsoft.EntityFrameworkCore.SqlServer package.

You would then configure your database context to use the SQL Server provider:

using Microsoft.EntityFrameworkCore;

public class MyDbContext : DbContext
{
    protected override void OnConfiguring(DbContextOptionsBuilder options)
        => options.UseSqlServer(@"Data Source=(localdb)\MSSQLLocalDB;Initial Catalog=MyDatabase");

    public DbSet<Customer> Customers { get; set; }
}

public class Customer
{
    public int Id { get; set; }
    public string Name { get; set; }
}

Additional documentation

Feedback

If you have a specific question about using these projects, we encourage you to ask it on Stack Overflow. If you encounter a bug or would like to request a feature, submit an Github issue. For more details, see getting support.

Showing the top 20 packages that depend on Microsoft.EntityFrameworkCore.

Packages Downloads
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
1,212
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
1,206
GreenDonut.Data.EntityFramework
This package provides data integrations like pagination, projections, filtering and sorting.
1,198
HotChocolate.Data.EntityFramework
Contains extensions for seamless integration of Entity Framework Core into HotChocolate
1,192
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
1,161
GreenDonut.Data.EntityFramework
This package provides data integrations like pagination, projections, filtering and sorting.
223
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
220
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
219
HotChocolate.Data.EntityFramework
Contains extensions for seamless integration of Entity Framework Core into HotChocolate
215
Microsoft.VisualStudio.Web.CodeGenerators.Mvc
Code Generators for ASP.NET Core MVC. Contains code generators for MVC Controllers and Views.
39
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
38
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
35
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
34
Npgsql.EntityFrameworkCore.PostgreSQL
PostgreSQL/Npgsql provider for Entity Framework Core.
34
HotChocolate.Data.EntityFramework
Contains extensions for seamless integration of Entity Framework Core into HotChocolate
34
Microsoft.VisualStudio.Web.CodeGenerators.Mvc
Code Generators for ASP.NET Core MVC. Contains code generators for MVC Controllers and Views.
34
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
33
Abp.EntityFrameworkCore
Abp.EntityFrameworkCore
33

.NET 11.0

Version Downloads Last updated
11.0.0-preview.4.26230.115 9 05/13/2026
11.0.0-preview.3.26207.106 21 04/16/2026
11.0.0-preview.2.26159.112 25 03/14/2026
11.0.0-preview.1.26104.118 21 02/12/2026
10.0.8 13 05/13/2026
10.0.7 217 04/23/2026
10.0.6 18 04/16/2026
10.0.5 26 03/13/2026
10.0.4 19 03/14/2026
10.0.3 23 02/13/2026
10.0.2 25 01/13/2026
10.0.1 32 12/10/2025
10.0.0 18 12/11/2025
10.0.0-rc.2.25502.107 18 12/17/2025
10.0.0-rc.1.25451.107 17 12/12/2025
10.0.0-preview.7.25380.108 19 12/16/2025
10.0.0-preview.6.25358.103 18 12/19/2025
10.0.0-preview.5.25277.114 21 12/10/2025
10.0.0-preview.4.25258.110 21 12/17/2025
10.0.0-preview.3.25171.6 23 12/14/2025
10.0.0-preview.2.25163.8 24 12/15/2025
10.0.0-preview.1.25081.1 22 12/10/2025
9.0.16 14 05/13/2026
9.0.15 18 04/16/2026
9.0.14 20 03/14/2026
9.0.13 22 02/13/2026
9.0.12 31 01/13/2026
9.0.11 21 12/14/2025
9.0.10 25 12/16/2025
9.0.9 22 12/12/2025
9.0.8 19 12/12/2025
9.0.7 23 12/19/2025
9.0.6 17 12/15/2025
9.0.5 25 12/16/2025
9.0.4 31 12/14/2025
9.0.3 27 12/11/2025
9.0.2 225 12/14/2025
9.0.1 22 12/15/2025
9.0.0 19 12/13/2025
9.0.0-rc.2.24474.1 15 12/23/2025
9.0.0-rc.1.24451.1 32 12/14/2025
9.0.0-preview.7.24405.3 22 12/14/2025
9.0.0-preview.6.24327.4 23 12/10/2025
9.0.0-preview.5.24306.3 22 12/18/2025
9.0.0-preview.4.24267.1 24 12/15/2025
9.0.0-preview.3.24172.4 21 12/09/2025
9.0.0-preview.2.24128.4 20 12/14/2025
9.0.0-preview.1.24081.2 25 12/14/2025
8.0.27 11 05/13/2026
8.0.26 25 04/16/2026
8.0.25 20 03/13/2026
8.0.24 23 02/13/2026
8.0.23 22 01/14/2026
8.0.22 22 12/19/2025
8.0.21 21 12/17/2025
8.0.20 28 12/09/2025
8.0.19 21 12/11/2025
8.0.18 23 12/23/2025
8.0.17 25 12/13/2025
8.0.16 24 12/19/2025
8.0.15 21 12/18/2025
8.0.14 20 12/16/2025
8.0.13 16 12/15/2025
8.0.12 22 01/01/2026
8.0.11 19 12/14/2025
8.0.10 18 12/14/2025
8.0.8 12 12/23/2025
8.0.7 23 12/11/2025
8.0.6 15 12/19/2025
8.0.5 17 12/14/2025
8.0.4 28 12/12/2025
8.0.3 21 12/15/2025
8.0.2 1,209 12/10/2025
8.0.1 21 12/14/2025
8.0.0 1,201 12/10/2025
8.0.0-rc.2.23480.1 38 12/11/2025
8.0.0-rc.1.23419.6 26 12/14/2025
8.0.0-preview.7.23375.4 23 12/12/2025
8.0.0-preview.6.23329.4 30 12/09/2025
8.0.0-preview.5.23280.1 18 12/13/2025
8.0.0-preview.4.23259.3 20 12/13/2025
8.0.0-preview.3.23174.2 26 12/21/2025
8.0.0-preview.2.23128.3 20 12/20/2025
8.0.0-preview.1.23111.4 22 12/20/2025
7.0.20 15 12/13/2025
7.0.19 13 12/15/2025
7.0.18 22 12/10/2025
7.0.17 23 12/10/2025
7.0.16 27 12/09/2025
7.0.15 18 01/03/2026
7.0.14 21 12/23/2025
7.0.13 42 01/02/2026
7.0.12 29 12/11/2025
7.0.11 20 12/10/2025
7.0.10 22 12/09/2025
7.0.9 22 12/14/2025
7.0.8 20 12/14/2025
7.0.7 17 12/16/2025
7.0.5 23 12/14/2025
7.0.4 25 12/11/2025
7.0.3 23 12/14/2025
7.0.2 20 01/03/2026
7.0.1 23 12/27/2025
7.0.0 17 12/10/2025
7.0.0-rc.2.22472.11 21 12/18/2025
7.0.0-rc.1.22426.7 18 12/21/2025
7.0.0-preview.7.22376.2 18 12/15/2025
7.0.0-preview.6.22329.4 23 12/14/2025
7.0.0-preview.5.22302.2 25 12/10/2025
7.0.0-preview.4.22229.2 27 12/14/2025
7.0.0-preview.3.22175.1 21 12/21/2025
7.0.0-preview.2.22153.1 21 12/20/2025
7.0.0-preview.1.22076.6 24 12/10/2025
6.0.36 26 12/15/2025
6.0.35 24 12/11/2025
6.0.33 21 12/15/2025
6.0.32 21 12/11/2025
6.0.31 23 12/17/2025
6.0.30 28 12/13/2025
6.0.29 32 12/14/2025
6.0.28 22 12/15/2025
6.0.27 24 12/17/2025
6.0.26 22 12/15/2025
6.0.25 25 12/13/2025
6.0.24 26 12/15/2025
6.0.23 17 12/23/2025
6.0.22 24 12/12/2025
6.0.21 24 12/14/2025
6.0.20 24 12/15/2025
6.0.19 22 12/14/2025
6.0.18 21 12/20/2025
6.0.16 23 12/20/2025
6.0.15 24 12/16/2025
6.0.14 22 12/15/2025
6.0.13 24 12/10/2025
6.0.12 20 12/09/2025
6.0.11 36 12/10/2025
6.0.10 22 12/23/2025
6.0.9 24 12/15/2025
6.0.8 13 01/01/2026
6.0.7 21 12/11/2025
6.0.6 20 12/12/2025
6.0.5 24 12/17/2025
6.0.4 24 12/10/2025
6.0.3 26 12/22/2025
6.0.2 24 12/24/2025
6.0.1 16 12/14/2025
6.0.0 19 12/21/2025
6.0.0-rc.2.21480.5 25 12/15/2025
6.0.0-rc.1.21452.10 20 12/21/2025
6.0.0-preview.7.21378.4 22 12/15/2025
6.0.0-preview.6.21352.1 15 12/14/2025
6.0.0-preview.5.21301.9 18 12/15/2025
6.0.0-preview.4.21253.1 19 12/14/2025
6.0.0-preview.3.21201.2 21 12/15/2025
6.0.0-preview.2.21154.2 20 12/13/2025
6.0.0-preview.1.21102.2 25 12/14/2025
5.0.17 20 12/22/2025
5.0.16 21 12/12/2025
5.0.15 23 12/10/2025
5.0.14 18 12/14/2025
5.0.13 21 12/14/2025
5.0.12 27 12/13/2025
5.0.11 19 12/27/2025
5.0.10 23 12/12/2025
5.0.9 24 12/15/2025
5.0.8 25 12/15/2025
5.0.7 24 12/16/2025
5.0.6 21 12/16/2025
5.0.5 16 12/25/2025
5.0.4 23 12/23/2025
5.0.3 15 12/15/2025
5.0.2 13 12/23/2025
5.0.1 23 12/15/2025
5.0.0 16 12/24/2025
5.0.0-rc.2.20475.6 18 12/14/2025
5.0.0-rc.1.20451.13 20 12/14/2025
5.0.0-preview.8.20407.4 25 12/14/2025
5.0.0-preview.7.20365.15 25 12/14/2025
5.0.0-preview.6.20312.4 20 12/14/2025
5.0.0-preview.5.20278.2 23 12/14/2025
5.0.0-preview.4.20220.10 18 12/14/2025
5.0.0-preview.3.20181.2 18 12/11/2025
5.0.0-preview.2.20159.4 20 12/17/2025
5.0.0-preview.2.20120.8 20 12/15/2025
3.1.32 27 12/14/2025
3.1.31 21 12/16/2025
3.1.30 29 12/11/2025
3.1.29 19 12/27/2025
3.1.28 17 12/14/2025
3.1.27 23 12/15/2025
3.1.26 27 12/11/2025
3.1.25 24 12/11/2025
3.1.24 18 12/17/2025
3.1.23 19 12/27/2025
3.1.22 18 12/27/2025
3.1.21 25 12/15/2025
3.1.20 18 12/18/2025
3.1.19 25 12/23/2025
3.1.18 16 12/14/2025
3.1.17 21 12/14/2025
3.1.16 18 12/15/2025
3.1.15 15 12/14/2025
3.1.14 26 12/14/2025
3.1.13 20 12/15/2025
3.1.12 28 12/11/2025
3.1.11 20 12/15/2025
3.1.10 22 12/10/2025
3.1.9 29 12/14/2025
3.1.8 21 12/13/2025
3.1.7 25 12/15/2025
3.1.6 16 12/25/2025
3.1.5 22 12/14/2025
3.1.4 15 12/22/2025
3.1.3 18 12/14/2025
3.1.2 22 12/23/2025
3.1.1 17 12/10/2025
3.1.0 19 12/27/2025
3.1.0-preview3.19554.8 21 12/21/2025
3.1.0-preview2.19525.5 23 12/15/2025
3.1.0-preview1.19506.2 15 12/21/2025
3.0.3 20 12/14/2025
3.0.2 24 12/14/2025
3.0.1 16 12/15/2025
3.0.0 24 12/10/2025
3.0.0-rc1.19456.14 24 12/15/2025
3.0.0-preview9.19423.6 23 12/15/2025
3.0.0-preview8.19405.11 16 12/21/2025
3.0.0-preview7.19362.6 30 12/19/2025
3.0.0-preview6.19304.10 19 12/10/2025
3.0.0-preview5.19227.1 24 12/10/2025
3.0.0-preview4.19216.3 24 12/14/2025
3.0.0-preview3.19153.1 18 12/21/2025
3.0.0-preview.19074.3 22 12/16/2025
3.0.0-preview.18572.1 21 12/15/2025
2.3.0 24 12/15/2025
2.2.6 25 12/15/2025
2.2.4 18 12/27/2025
2.2.3 23 12/25/2025
2.2.2 23 12/15/2025
2.2.1 17 12/13/2025
2.2.0 18 12/19/2025
2.2.0-preview3-35497 22 12/10/2025
2.2.0-preview2-35157 19 12/21/2025
2.2.0-preview1-35029 21 12/27/2025
2.1.14 19 12/27/2025
2.1.11 21 12/14/2025
2.1.8 22 12/15/2025
2.1.4 20 12/14/2025
2.1.3 21 12/14/2025
2.1.2 24 12/14/2025
2.1.1 15 12/19/2025
2.1.0 18 12/27/2025
2.1.0-rc1-final 25 12/14/2025
2.1.0-preview2-final 23 12/15/2025
2.1.0-preview1-final 23 12/20/2025
2.0.3 23 12/23/2025
2.0.2 24 12/21/2025
2.0.1 22 12/09/2025
2.0.0 20 12/27/2025
2.0.0-preview2-final 15 12/20/2025
2.0.0-preview1-final 17 12/20/2025
1.1.6 20 12/15/2025
1.1.5 17 12/15/2025
1.1.4 24 12/27/2025
1.1.3 20 12/24/2025
1.1.2 18 12/27/2025
1.1.1 21 12/15/2025
1.1.0 22 12/18/2025
1.1.0-preview1-final 25 12/14/2025
1.0.6 16 12/27/2025
1.0.5 22 12/27/2025
1.0.4 17 12/09/2025
1.0.3 14 12/27/2025
1.0.2 22 12/14/2025
1.0.1 18 12/14/2025
1.0.0 22 12/15/2025
1.0.0-rc2-final 22 12/21/2025