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.
165
EntityFrameworkCore.DataEncryption
A plugin for Microsoft.EntityFrameworkCore to add support of encrypted fields using built-in or custom encryption providers.
279
EntityFrameworkCore.DataEncryption
A plugin for Microsoft.EntityFrameworkCore to add support of encrypted fields using built-in or custom encryption providers.
14,914
Microsoft.EntityFrameworkCore.DynamicLinq
Dynamic Linq extensions for Microsoft.EntityFrameworkCore which adds Async support
286
Microsoft.EntityFrameworkCore.Proxies
Lazy-loading proxies for EF Core.
5,590
Microsoft.EntityFrameworkCore.Proxies
Lazy-loading proxies for EF Core.
9,700
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
158
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
203
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
460
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
192
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
434
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
9,625
Quantum.Framework.Core.StandardLib
Package Description
177
Quantum.Framework.Core.StandardLib
Package Description
191
Quantum.Framework.Core.StandardLib
Package Description
221
Quantum.Framework.Core.StandardLib
Package Description
265
Quantum.Framework.Core.StandardLib
Package Description
414
Quantum.Framework.WebApp
提供TMS/WMS/OMS/AMS等共享的组件
280
Quantum.Framework.WebApp
提供TMS/WMS/OMS/AMS等共享的组件
400
SkyAPM.Diagnostics.EntityFrameworkCore
SkyApm.Diagnostics.EntityFrameworkCore notifies of EF requests.
155

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