Microsoft.EntityFrameworkCore 8.0.12

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
HotChocolate.Data.EntityFramework
Contains extensions for seamless integration of Entity Framework Core into HotChocolate
3,948
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
3,702
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
3,698
HotChocolate.Data.EntityFramework
Contains extensions for seamless integration of Entity Framework Core into HotChocolate
500
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
498
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
491
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
371
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
282
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
281
Microsoft.EntityFrameworkCore.InMemory
In-memory database provider for Entity Framework Core (to be used for testing purposes).
91
AspNetCore.HealthChecks.UI.Core
HealthChecks.UI.Core package containing builder and model definitions
61
Microsoft.EntityFrameworkCore.InMemory
In-memory database provider for Entity Framework Core (to be used for testing purposes).
59
Ardalis.Specification.EntityFrameworkCore
EF Core plugin package to Ardalis.Specification containing EF Core evaluator and abstract repository.
57
Microsoft.EntityFrameworkCore.Proxies
Lazy-loading proxies for EF Core. This package was built from the source at: https://github.com/aspnet/EntityFramework.git/tree/cbd2a2074d908673195abbb14de5a460acaa2aea
57
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
56
Microsoft.EntityFrameworkCore.Proxies
Lazy-loading proxies for EF Core.
52
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
52
Microsoft.EntityFrameworkCore.Proxies
Lazy-loading proxies for EF Core. This package was built from the source code at https://github.com/aspnet/EntityFrameworkCore/tree/bf24028cec2e5f63c02307865729f3c1b3afcf38
51
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
51

Version Downloads Last updated
10.0.0-preview.3.25171.6 10 04/11/2025
10.0.0-preview.2.25163.8 12 03/25/2025
10.0.0-preview.1.25081.1 16 02/26/2025
9.0.4 8 04/12/2025
9.0.3 11 03/14/2025
9.0.2 13 02/13/2025
9.0.1 16 01/17/2025
9.0.0 20 11/13/2024
9.0.0-rc.2.24474.1 19 10/16/2024
9.0.0-rc.1.24451.1 21 09/10/2024
9.0.0-preview.7.24405.3 24 08/15/2024
9.0.0-preview.6.24327.4 36 07/10/2024
9.0.0-preview.5.24306.3 29 06/12/2024
9.0.0-preview.4.24267.1 25 05/24/2024
9.0.0-preview.3.24172.4 22 04/13/2024
9.0.0-preview.2.24128.4 31 03/21/2024
9.0.0-preview.1.24081.2 28 02/18/2024
8.0.15 7 04/10/2025
8.0.14 11 03/14/2025
8.0.13 12 02/13/2025
8.0.12 18 01/20/2025
8.0.11 16 11/13/2024
8.0.10 18 10/12/2024
8.0.8 26 08/15/2024
8.0.7 31 07/14/2024
8.0.6 24 05/29/2024
8.0.5 22 05/15/2024
8.0.4 28 04/11/2024
8.0.3 30 03/13/2024
8.0.2 3,702 02/17/2024
8.0.1 285 01/17/2024
8.0.0 3,946 11/14/2023
8.0.0-rc.2.23480.1 29 10/10/2023
8.0.0-rc.1.23419.6 38 09/14/2023
8.0.0-preview.7.23375.4 46 08/25/2023
8.0.0-preview.6.23329.4 45 07/12/2023
8.0.0-preview.5.23280.1 39 06/20/2023
8.0.0-preview.4.23259.3 40 05/18/2023
8.0.0-preview.3.23174.2 51 04/28/2023
8.0.0-preview.2.23128.3 497 04/03/2023
8.0.0-preview.1.23111.4 40 06/29/2023
7.0.20 25 05/29/2024
7.0.19 30 05/15/2024
7.0.18 33 04/11/2024
7.0.17 37 03/13/2024
7.0.16 28 02/17/2024
7.0.15 37 02/05/2024
7.0.14 34 11/17/2023
7.0.13 36 10/24/2023
7.0.12 38 10/10/2023
7.0.11 41 09/14/2023
7.0.10 33 08/19/2023
7.0.9 44 07/25/2023
7.0.8 38 07/06/2023
7.0.7 36 06/20/2023
7.0.5 47 04/28/2023
7.0.4 39 05/18/2023
7.0.3 49 03/09/2023
7.0.2 43 01/26/2023
7.0.1 53 12/17/2022
7.0.0 505 11/15/2022
7.0.0-rc.2.22472.11 39 11/20/2022
7.0.0-rc.1.22426.7 39 06/27/2023
7.0.0-preview.7.22376.2 50 09/25/2022
7.0.0-preview.6.22329.4 38 11/20/2022
7.0.0-preview.5.22302.2 36 06/29/2023
7.0.0-preview.4.22229.2 40 06/28/2023
7.0.0-preview.3.22175.1 43 05/06/2022
7.0.0-preview.2.22153.1 44 05/28/2022
7.0.0-preview.1.22076.6 36 03/01/2022
6.0.36 20 11/13/2024
6.0.35 15 10/12/2024
6.0.33 24 08/15/2024
6.0.32 24 07/10/2024
6.0.31 22 05/29/2024
6.0.30 29 05/15/2024
6.0.29 25 04/11/2024
6.0.28 24 03/19/2024
6.0.27 29 02/17/2024
6.0.26 29 01/21/2024
6.0.25 32 11/17/2023
6.0.24 28 10/24/2023
6.0.23 38 10/10/2023
6.0.22 42 09/14/2023
6.0.21 36 08/23/2023
6.0.20 38 07/26/2023
6.0.19 38 07/11/2023
6.0.18 28 07/05/2023
6.0.16 45 04/28/2023
6.0.15 41 07/02/2023
6.0.14 46 06/05/2023
6.0.13 42 07/01/2023
6.0.12 38 06/29/2023
6.0.11 38 11/28/2022
6.0.10 50 10/14/2022
6.0.9 34 10/10/2022
6.0.8 35 08/30/2022
6.0.7 39 07/21/2022
6.0.6 47 07/12/2022
6.0.5 48 05/25/2022
6.0.4 42 12/22/2022
6.0.3 64 03/09/2022
6.0.2 52 02/11/2022
6.0.1 67 12/20/2021
6.0.0 51 11/09/2021
6.0.0-rc.2.21480.5 30 06/15/2023
6.0.0-rc.1.21452.10 36 05/16/2022
6.0.0-preview.7.21378.4 50 06/13/2022
6.0.0-preview.6.21352.1 38 05/10/2022
6.0.0-preview.5.21301.9 49 11/15/2022
6.0.0-preview.4.21253.1 47 05/18/2022
6.0.0-preview.3.21201.2 42 08/24/2022
6.0.0-preview.2.21154.2 36 05/10/2022
6.0.0-preview.1.21102.2 40 06/24/2023
5.0.17 31 06/29/2023
5.0.16 45 11/02/2022
5.0.15 56 05/11/2022
5.0.14 38 07/17/2022
5.0.13 34 06/30/2023
5.0.12 44 05/19/2022
5.0.11 44 10/22/2021
5.0.10 60 09/24/2021
5.0.9 55 07/02/2023
5.0.8 44 07/19/2021
5.0.7 70 07/09/2021
5.0.6 46 05/28/2022
5.0.5 43 04/18/2023
5.0.4 41 04/06/2021
5.0.3 209 02/15/2021
5.0.2 173 01/26/2021
5.0.1 39 07/03/2022
5.0.0 39 10/26/2022
5.0.0-rc.2.20475.6 36 06/20/2022
5.0.0-rc.1.20451.13 35 06/28/2023
5.0.0-preview.8.20407.4 42 05/27/2022
5.0.0-preview.7.20365.15 43 05/10/2022
5.0.0-preview.6.20312.4 45 06/28/2023
5.0.0-preview.5.20278.2 38 06/29/2023
5.0.0-preview.4.20220.10 43 06/06/2022
5.0.0-preview.3.20181.2 51 10/06/2022
5.0.0-preview.2.20159.4 40 06/30/2023
5.0.0-preview.2.20120.8 35 06/04/2022
3.1.32 30 07/01/2023
3.1.31 38 12/02/2022
3.1.30 37 06/29/2023
3.1.29 45 01/13/2023
3.1.28 39 05/15/2023
3.1.27 35 06/24/2023
3.1.26 38 09/14/2022
3.1.25 33 06/29/2023
3.1.24 39 12/25/2022
3.1.23 36 05/15/2023
3.1.22 31 06/14/2023
3.1.21 50 06/02/2022
3.1.20 30 06/23/2023
3.1.19 35 06/27/2023
3.1.18 32 06/30/2023
3.1.17 42 10/25/2022
3.1.16 35 05/20/2022
3.1.15 37 09/28/2022
3.1.14 39 12/24/2021
3.1.13 32 10/16/2022
3.1.12 39 06/19/2022
3.1.11 43 05/10/2022
3.1.10 35 02/04/2023
3.1.9 47 05/16/2022
3.1.8 42 05/19/2022
3.1.7 115 11/09/2020
3.1.6 54 11/02/2022
3.1.5 37 06/15/2023
3.1.4 39 06/24/2023
3.1.3 40 05/09/2022
3.1.2 37 06/03/2022
3.1.1 45 08/03/2022
3.1.0 41 05/15/2023
3.1.0-preview3.19554.8 42 06/23/2022
3.1.0-preview2.19525.5 44 11/29/2022
3.1.0-preview1.19506.2 41 06/28/2023
3.0.3 60 11/05/2022
3.0.2 39 06/22/2022
3.0.1 29 06/29/2023
3.0.0 45 05/11/2022
3.0.0-rc1.19456.14 44 07/03/2022
3.0.0-preview9.19423.6 46 06/27/2022
3.0.0-preview8.19405.11 36 06/28/2023
3.0.0-preview7.19362.6 43 06/27/2023
3.0.0-preview6.19304.10 36 07/16/2022
3.0.0-preview5.19227.1 54 05/16/2022
3.0.0-preview4.19216.3 42 06/28/2023
3.0.0-preview3.19153.1 37 06/27/2022
3.0.0-preview.19074.3 40 06/29/2023
3.0.0-preview.18572.1 45 05/10/2022
2.3.0 12 01/17/2025
2.2.6 42 11/22/2021
2.2.4 48 12/26/2022
2.2.3 50 06/04/2022
2.2.2 36 12/03/2022
2.2.1 59 06/17/2022
2.2.0 47 05/09/2022
2.2.0-preview3-35497 34 05/27/2022
2.2.0-preview2-35157 41 06/28/2023
2.2.0-preview1-35029 30 06/29/2023
2.1.14 35 06/29/2023
2.1.11 53 05/23/2022
2.1.8 34 06/28/2023
2.1.4 38 04/03/2023
2.1.3 31 05/10/2023
2.1.2 38 06/24/2023
2.1.1 37 02/22/2023
2.1.0 37 11/15/2022
2.1.0-rc1-final 33 05/10/2022
2.1.0-preview2-final 62 05/31/2022
2.1.0-preview1-final 37 05/16/2022
2.0.3 33 11/03/2022
2.0.2 37 06/29/2023
2.0.1 37 05/17/2022
2.0.0 39 05/20/2022
2.0.0-preview2-final 34 06/27/2023
2.0.0-preview1-final 47 05/10/2022
1.1.6 40 05/09/2022
1.1.5 41 02/21/2023
1.1.4 31 05/15/2023
1.1.3 48 05/22/2022
1.1.2 40 10/03/2022
1.1.1 46 11/11/2022
1.1.0 40 12/16/2022
1.1.0-preview1-final 34 12/21/2022
1.0.6 43 12/31/2022
1.0.5 40 05/30/2022
1.0.4 37 02/21/2023
1.0.3 42 10/17/2022
1.0.2 36 01/16/2023
1.0.1 47 11/28/2022
1.0.0 44 01/22/2023
1.0.0-rc2-final 32 05/14/2023