Microsoft.EntityFrameworkCore 10.0.0

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
EntityFrameworkCore.DataEncryption
A plugin for Microsoft.EntityFrameworkCore to add support of encrypted fields using built-in or custom encryption providers.
171
EntityFrameworkCore.DataEncryption
A plugin for Microsoft.EntityFrameworkCore to add support of encrypted fields using built-in or custom encryption providers.
282
EntityFrameworkCore.DataEncryption
A plugin for Microsoft.EntityFrameworkCore to add support of encrypted fields using built-in or custom encryption providers.
14,978
Microsoft.EntityFrameworkCore.DynamicLinq
Dynamic Linq extensions for Microsoft.EntityFrameworkCore which adds Async support
295
Microsoft.EntityFrameworkCore.Proxies
Lazy-loading proxies for EF Core.
5,594
Microsoft.EntityFrameworkCore.Proxies
Lazy-loading proxies for EF Core.
9,763
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
210
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
480
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
168
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
200
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
450
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
9,681
Quantum.Framework.Core.StandardLib
Package Description
190
Quantum.Framework.Core.StandardLib
Package Description
201
Quantum.Framework.Core.StandardLib
Package Description
236
Quantum.Framework.Core.StandardLib
Package Description
278
Quantum.Framework.Core.StandardLib
Package Description
471
Quantum.Framework.WebApp
提供TMS/WMS/OMS/AMS等共享的组件
296
Quantum.Framework.WebApp
提供TMS/WMS/OMS/AMS等共享的组件
454
SkyAPM.Diagnostics.EntityFrameworkCore
SkyApm.Diagnostics.EntityFrameworkCore notifies of EF requests.
180

Version Downloads Last updated
10.0.0 52 11/18/2025
10.0.0-rc.2.25502.107 40 10/15/2025
10.0.0-rc.1.25451.107 38 09/10/2025
10.0.0-preview.7.25380.108 36 08/13/2025
10.0.0-preview.6.25358.103 35 07/16/2025
10.0.0-preview.5.25277.114 40 06/08/2025
10.0.0-preview.4.25258.110 43 05/13/2025
10.0.0-preview.3.25171.6 45 04/14/2025
10.0.0-preview.2.25163.8 47 03/26/2025
10.0.0-preview.1.25081.1 55 02/27/2025
9.0.11 32 11/19/2025
9.0.10 36 10/15/2025
9.0.9 34 09/10/2025
9.0.8 34 08/08/2025
9.0.7 32 07/10/2025
9.0.6 44 06/14/2025
9.0.5 58 05/16/2025
9.0.4 53 04/14/2025
9.0.3 35 04/01/2025
9.0.2 50 02/12/2025
9.0.1 53 01/19/2025
9.0.0 62 12/01/2024
9.0.0-rc.2.24474.1 53 11/05/2024
9.0.0-rc.1.24451.1 45 11/14/2024
9.0.0-preview.7.24405.3 65 11/21/2024
9.0.0-preview.6.24327.4 52 11/24/2024
9.0.0-preview.5.24306.3 58 11/09/2024
9.0.0-preview.4.24267.1 54 05/23/2024
9.0.0-preview.3.24172.4 52 04/16/2024
9.0.0-preview.2.24128.4 62 04/27/2024
9.0.0-preview.1.24081.2 58 05/02/2024
8.0.22 31 11/19/2025
8.0.21 33 10/15/2025
8.0.20 40 09/10/2025
8.0.19 47 08/09/2025
8.0.18 34 07/10/2025
8.0.17 33 06/14/2025
8.0.16 54 05/17/2025
8.0.15 40 04/14/2025
8.0.14 55 03/22/2025
8.0.13 51 03/04/2025
8.0.12 65 01/24/2025
8.0.11 84 12/04/2024
8.0.10 49 11/04/2024
8.0.8 56 11/25/2024
8.0.7 52 12/24/2024
8.0.6 56 11/25/2024
8.0.5 393 05/18/2024
8.0.4 223 04/16/2024
8.0.3 61 05/22/2024
8.0.2 85 04/16/2024
8.0.1 63 01/25/2024
8.0.0 311 12/02/2023
8.0.0-rc.2.23480.1 59 05/15/2024
8.0.0-rc.1.23419.6 58 12/03/2024
8.0.0-preview.7.23375.4 50 11/21/2024
8.0.0-preview.6.23329.4 55 07/28/2023
8.0.0-preview.3.23174.2 50 11/22/2024
8.0.0-preview.2.23128.3 59 11/25/2024
8.0.0-preview.1.23111.4 55 05/06/2024
7.0.20 55 11/21/2024
7.0.19 165 05/18/2024
7.0.18 49 05/09/2024
7.0.17 49 04/16/2024
7.0.16 57 04/16/2024
7.0.15 67 01/25/2024
7.0.14 61 12/06/2023
7.0.13 61 05/29/2024
7.0.12 74 04/16/2024
7.0.11 59 04/16/2024
7.0.10 62 08/22/2023
7.0.9 58 08/21/2023
7.0.8 61 05/09/2024
7.0.7 55 05/06/2024
7.0.5 52 05/08/2024
7.0.4 65 05/14/2024
7.0.2 67 12/07/2023
7.0.1 126 08/14/2023
7.0.0-rc.2.22472.11 48 05/15/2024
7.0.0-rc.1.22426.7 60 05/02/2024
7.0.0-preview.7.22376.2 47 11/26/2024
7.0.0-preview.6.22329.4 51 05/09/2024
7.0.0-preview.5.22302.2 48 05/11/2024
7.0.0-preview.4.22229.2 51 05/05/2024
7.0.0-preview.3.22175.1 61 11/24/2024
7.0.0-preview.2.22153.1 56 11/14/2024
7.0.0-preview.1.22076.6 50 11/10/2024
6.0.36 52 12/02/2024
6.0.35 53 11/25/2024
6.0.33 57 10/31/2024
6.0.32 49 12/11/2024
6.0.31 58 11/25/2024
6.0.30 52 05/18/2024
6.0.29 61 05/11/2024
6.0.28 55 05/14/2024
6.0.27 52 05/24/2024
6.0.26 56 01/25/2024
6.0.25 57 12/10/2023
6.0.24 61 04/16/2024
6.0.23 54 05/05/2024
6.0.22 56 09/13/2023
6.0.21 65 09/08/2023
6.0.20 162 08/07/2023
6.0.19 52 05/15/2024
6.0.18 58 05/12/2024
6.0.15 52 05/09/2024
6.0.14 57 07/13/2023
6.0.13 49 05/03/2024
6.0.12 51 05/22/2024
6.0.10 48 05/14/2024
6.0.9 58 05/09/2024
6.0.8 57 05/09/2024
6.0.6 63 05/24/2024
6.0.5 69 08/04/2023
6.0.2 80 01/04/2024
6.0.1 68 05/05/2024
6.0.0-rc.2.21480.5 41 05/09/2024
6.0.0-rc.1.21452.10 46 12/09/2024
6.0.0-preview.6.21352.1 31 11/25/2024
6.0.0-preview.5.21301.9 50 11/21/2024
6.0.0-preview.4.21253.1 52 05/11/2024
6.0.0-preview.3.21201.2 50 05/01/2024
6.0.0-preview.2.21154.2 54 11/10/2024
6.0.0-preview.1.21102.2 54 11/10/2024
5.0.16 55 05/11/2024
5.0.13 52 05/22/2024
5.0.6 61 05/21/2024
5.0.3 59 05/06/2024
5.0.0-rc.2.20475.6 47 05/23/2024
5.0.0-rc.1.20451.13 35 11/26/2024
5.0.0-preview.6.20312.4 43 05/01/2024
5.0.0-preview.5.20278.2 57 11/09/2024
5.0.0-preview.4.20220.10 47 05/10/2024
5.0.0-preview.2.20159.4 47 11/25/2024
5.0.0-preview.2.20120.8 40 11/10/2024
3.1.31 47 11/09/2024
3.1.29 50 05/20/2024
3.1.28 54 05/25/2024
3.1.27 63 05/11/2024
3.1.26 58 11/09/2024
3.1.25 46 05/08/2024
3.1.22 47 05/30/2024
3.1.20 57 05/23/2024
3.1.13 70 03/11/2024
3.1.10 45 05/07/2024
3.1.8 62 05/11/2024
3.1.5 61 05/09/2024
3.1.0-preview2.19525.5 53 11/09/2024
3.1.0-preview1.19506.2 53 11/26/2024
3.0.3 58 05/18/2024
3.0.2 55 05/02/2024
3.0.1 55 05/27/2024
3.0.0-rc1.19456.14 59 05/03/2024
3.0.0-preview8.19405.11 48 11/09/2024
3.0.0-preview7.19362.6 46 05/06/2024
3.0.0-preview6.19304.10 51 05/09/2024
3.0.0-preview.19074.3 59 05/01/2024
3.0.0-preview.18572.1 57 05/05/2024
2.3.0 54 01/19/2025
2.2.4 51 05/18/2024
2.2.0-preview3-35497 60 11/26/2024
2.2.0-preview2-35157 42 11/21/2024
2.1.8 48 05/29/2024
2.1.1 62 01/31/2024
2.1.0 54 05/21/2024
2.1.0-rc1-final 45 05/09/2024
2.1.0-preview1-final 53 05/07/2024
2.0.3 55 05/21/2024
2.0.0-preview2-final 56 05/13/2024
1.1.4 58 05/15/2024
1.1.1 56 01/31/2024
1.1.0-preview1-final 60 05/05/2024
1.0.6 59 11/09/2024
1.0.4 54 11/10/2024
1.0.2 57 05/08/2024
1.0.0 61 05/13/2024
1.0.0-rc2-final 60 05/02/2024