Microsoft.EntityFrameworkCore 9.0.7

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
4,614
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
4,377
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
4,372
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
1,032
HotChocolate.Data.EntityFramework
Contains extensions for seamless integration of Entity Framework Core into HotChocolate
507
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
505
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
497
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
292
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
287
Microsoft.EntityFrameworkCore.InMemory
In-memory database provider for Entity Framework Core (to be used for testing purposes).
95
Ardalis.Specification.EntityFrameworkCore
EF Core plugin package to Ardalis.Specification containing EF Core evaluator and abstract repository.
72
AspNetCore.HealthChecks.UI.Core
HealthChecks.UI.Core package containing builder and model definitions
70
Ardalis.Specification.EntityFrameworkCore
EF Core plugin package to Ardalis.Specification containing EF Core evaluator and abstract repository.
69
Microsoft.EntityFrameworkCore.InMemory
In-memory database provider for Entity Framework Core (to be used for testing purposes).
67
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
67
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
65
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
63
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
63
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
62

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