Microsoft.EntityFrameworkCore 10.0.0-preview.2.25163.8

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.
133
EntityFrameworkCore.DataEncryption
A plugin for Microsoft.EntityFrameworkCore to add support of encrypted fields using built-in or custom encryption providers.
237
EntityFrameworkCore.DataEncryption
A plugin for Microsoft.EntityFrameworkCore to add support of encrypted fields using built-in or custom encryption providers.
14,397
Microsoft.EntityFrameworkCore.DynamicLinq
Dynamic Linq extensions for Microsoft.EntityFrameworkCore which adds Async support
176
Microsoft.EntityFrameworkCore.Proxies
Lazy-loading proxies for EF Core.
5,545
Microsoft.EntityFrameworkCore.Proxies
Lazy-loading proxies for EF Core.
9,235
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
106
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
125
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
173
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
302
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
109
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
118
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
170
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
275
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
9,186
Quantum.Framework.Core.StandardLib
Package Description
95
Quantum.Framework.Core.StandardLib
Package Description
120
Quantum.Framework.Core.StandardLib
Package Description
159
Quantum.Framework.Core.StandardLib
Package Description
169
Quantum.Framework.Core.StandardLib
Package Description
184

.NET 10.0

Version Downloads Last updated
10.0.0-preview.2.25163.8 3 03/26/2025
10.0.0-preview.1.25081.1 2 02/27/2025
9.0.3 1 04/01/2025
9.0.2 5 02/12/2025
9.0.1 6 01/19/2025
9.0.0 15 12/01/2024
9.0.0-rc.2.24474.1 9 11/05/2024
9.0.0-rc.1.24451.1 7 11/14/2024
9.0.0-preview.7.24405.3 14 11/21/2024
9.0.0-preview.6.24327.4 8 11/24/2024
9.0.0-preview.5.24306.3 10 11/09/2024
9.0.0-preview.4.24267.1 15 05/23/2024
9.0.0-preview.3.24172.4 12 04/16/2024
9.0.0-preview.2.24128.4 15 04/27/2024
9.0.0-preview.1.24081.2 16 05/02/2024
8.0.14 2 03/22/2025
8.0.13 1 03/04/2025
8.0.12 3 01/24/2025
8.0.11 20 12/04/2024
8.0.10 8 11/04/2024
8.0.8 14 11/25/2024
8.0.7 5 12/24/2024
8.0.6 12 11/25/2024
8.0.5 234 05/18/2024
8.0.4 175 04/16/2024
8.0.3 12 05/22/2024
8.0.2 19 04/16/2024
8.0.1 13 01/25/2024
8.0.0 158 12/02/2023
8.0.0-rc.2.23480.1 15 05/15/2024
8.0.0-rc.1.23419.6 8 12/03/2024
8.0.0-preview.7.23375.4 11 11/21/2024
8.0.0-preview.6.23329.4 14 07/28/2023
8.0.0-preview.3.23174.2 13 11/22/2024
8.0.0-preview.2.23128.3 7 11/25/2024
8.0.0-preview.1.23111.4 12 05/06/2024
7.0.20 12 11/21/2024
7.0.19 120 05/18/2024
7.0.18 13 05/09/2024
7.0.17 13 04/16/2024
7.0.16 15 04/16/2024
7.0.15 14 01/25/2024
7.0.14 23 12/06/2023
7.0.13 15 05/29/2024
7.0.12 22 04/16/2024
7.0.11 16 04/16/2024
7.0.10 19 08/22/2023
7.0.9 21 08/21/2023
7.0.8 13 05/09/2024
7.0.7 11 05/06/2024
7.0.5 12 05/08/2024
7.0.4 16 05/14/2024
7.0.2 22 12/07/2023
7.0.1 38 08/14/2023
7.0.0-rc.2.22472.11 15 05/15/2024
7.0.0-rc.1.22426.7 14 05/02/2024
7.0.0-preview.7.22376.2 5 11/26/2024
7.0.0-preview.6.22329.4 17 05/09/2024
7.0.0-preview.5.22302.2 12 05/11/2024
7.0.0-preview.4.22229.2 13 05/05/2024
7.0.0-preview.3.22175.1 13 11/24/2024
7.0.0-preview.2.22153.1 11 11/14/2024
7.0.0-preview.1.22076.6 9 11/10/2024
6.0.36 9 12/02/2024
6.0.35 11 11/25/2024
6.0.33 9 10/31/2024
6.0.32 8 12/11/2024
6.0.31 12 11/25/2024
6.0.30 12 05/18/2024
6.0.29 9 05/11/2024
6.0.28 9 05/14/2024
6.0.27 9 05/24/2024
6.0.26 14 01/25/2024
6.0.25 16 12/10/2023
6.0.24 14 04/16/2024
6.0.23 15 05/05/2024
6.0.22 17 09/13/2023
6.0.21 16 09/08/2023
6.0.20 106 08/07/2023
6.0.19 14 05/15/2024
6.0.18 13 05/12/2024
6.0.15 11 05/09/2024
6.0.14 18 07/13/2023
6.0.13 14 05/03/2024
6.0.12 8 05/22/2024
6.0.10 12 05/14/2024
6.0.9 11 05/09/2024
6.0.8 15 05/09/2024
6.0.6 14 05/24/2024
6.0.5 18 08/04/2023
6.0.2 28 01/04/2024
6.0.1 15 05/05/2024
6.0.0-rc.2.21480.5 10 05/09/2024
6.0.0-rc.1.21452.10 6 12/09/2024
6.0.0-preview.6.21352.1 6 11/25/2024
6.0.0-preview.5.21301.9 9 11/21/2024
6.0.0-preview.4.21253.1 12 05/11/2024
6.0.0-preview.3.21201.2 13 05/01/2024
6.0.0-preview.2.21154.2 14 11/10/2024
6.0.0-preview.1.21102.2 9 11/10/2024
5.0.16 15 05/11/2024
5.0.13 13 05/22/2024
5.0.6 17 05/21/2024
5.0.3 12 05/06/2024
5.0.0-rc.2.20475.6 9 05/23/2024
5.0.0-rc.1.20451.13 6 11/26/2024
5.0.0-preview.6.20312.4 10 05/01/2024
5.0.0-preview.5.20278.2 10 11/09/2024
5.0.0-preview.4.20220.10 13 05/10/2024
5.0.0-preview.2.20159.4 9 11/25/2024
5.0.0-preview.2.20120.8 6 11/10/2024
3.1.31 10 11/09/2024
3.1.29 14 05/20/2024
3.1.28 13 05/25/2024
3.1.27 17 05/11/2024
3.1.26 13 11/09/2024
3.1.25 11 05/08/2024
3.1.22 8 05/30/2024
3.1.20 19 05/23/2024
3.1.13 21 03/11/2024
3.1.10 8 05/07/2024
3.1.8 11 05/11/2024
3.1.5 18 05/09/2024
3.1.0-preview2.19525.5 11 11/09/2024
3.1.0-preview1.19506.2 11 11/26/2024
3.0.3 13 05/18/2024
3.0.2 18 05/02/2024
3.0.1 16 05/27/2024
3.0.0-rc1.19456.14 14 05/03/2024
3.0.0-preview8.19405.11 9 11/09/2024
3.0.0-preview7.19362.6 11 05/06/2024
3.0.0-preview6.19304.10 11 05/09/2024
3.0.0-preview.19074.3 13 05/01/2024
3.0.0-preview.18572.1 17 05/05/2024
2.3.0 6 01/19/2025
2.2.4 14 05/18/2024
2.2.0-preview3-35497 8 11/26/2024
2.2.0-preview2-35157 6 11/21/2024
2.1.8 15 05/29/2024
2.1.1 15 01/31/2024
2.1.0 14 05/21/2024
2.1.0-rc1-final 9 05/09/2024
2.1.0-preview1-final 9 05/07/2024
2.0.3 14 05/21/2024
2.0.0-preview2-final 12 05/13/2024
1.1.4 17 05/15/2024
1.1.1 16 01/31/2024
1.1.0-preview1-final 13 05/05/2024
1.0.6 9 11/09/2024
1.0.4 12 11/10/2024
1.0.2 13 05/08/2024
1.0.0 17 05/13/2024
1.0.0-rc2-final 13 05/02/2024