Microsoft.EntityFrameworkCore 9.0.0-preview.4.24267.1

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.
119
EntityFrameworkCore.DataEncryption
A plugin for Microsoft.EntityFrameworkCore to add support of encrypted fields using built-in or custom encryption providers.
214
EntityFrameworkCore.DataEncryption
A plugin for Microsoft.EntityFrameworkCore to add support of encrypted fields using built-in or custom encryption providers.
14,260
Microsoft.EntityFrameworkCore.DynamicLinq
Dynamic Linq extensions for Microsoft.EntityFrameworkCore which adds Async support
117
Microsoft.EntityFrameworkCore.Proxies
Lazy-loading proxies for EF Core.
5,530
Microsoft.EntityFrameworkCore.Proxies
Lazy-loading proxies for EF Core.
9,112
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
91
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
103
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
162
Microsoft.EntityFrameworkCore.Proxies
Lazy loading proxies for Entity Framework Core.
190
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
97
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
105
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
160
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
181
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
9,083
Quantum.Framework.Core.StandardLib
Package Description
71
Quantum.Framework.Core.StandardLib
Package Description
110
Quantum.Framework.Core.StandardLib
Package Description
149
Quantum.Framework.Core.StandardLib
Package Description
157
Quantum.Framework.Core.StandardLib
Package Description
164

.NET 8.0

Version Downloads Last updated
9.0.0-preview.4.24267.1 2 05/23/2024
9.0.0-preview.3.24172.4 4 04/16/2024
9.0.0-preview.2.24128.4 5 04/27/2024
9.0.0-preview.1.24081.2 7 05/02/2024
8.0.5 159 05/18/2024
8.0.4 161 04/16/2024
8.0.3 2 05/22/2024
8.0.2 5 04/16/2024
8.0.1 4 01/25/2024
8.0.0 81 12/02/2023
8.0.0-rc.2.23480.1 7 05/15/2024
8.0.0-preview.6.23329.4 4 07/28/2023
8.0.0-preview.1.23111.4 6 05/06/2024
7.0.19 103 05/18/2024
7.0.18 5 05/09/2024
7.0.17 3 04/16/2024
7.0.16 5 04/16/2024
7.0.15 4 01/25/2024
7.0.14 5 12/06/2023
7.0.13 6 05/29/2024
7.0.12 8 04/16/2024
7.0.11 4 04/16/2024
7.0.10 8 08/22/2023
7.0.9 8 08/21/2023
7.0.8 4 05/09/2024
7.0.7 3 05/06/2024
7.0.5 3 05/08/2024
7.0.4 5 05/14/2024
7.0.2 6 12/07/2023
7.0.1 7 08/14/2023
7.0.0-rc.2.22472.11 4 05/15/2024
7.0.0-rc.1.22426.7 5 05/02/2024
7.0.0-preview.6.22329.4 4 05/09/2024
7.0.0-preview.5.22302.2 5 05/11/2024
7.0.0-preview.4.22229.2 4 05/05/2024
6.0.30 4 05/18/2024
6.0.29 3 05/11/2024
6.0.28 2 05/14/2024
6.0.27 2 05/24/2024
6.0.26 7 01/25/2024
6.0.25 6 12/10/2023
6.0.24 5 04/16/2024
6.0.23 4 05/05/2024
6.0.22 8 09/13/2023
6.0.21 8 09/08/2023
6.0.20 94 08/07/2023
6.0.19 3 05/15/2024
6.0.18 5 05/12/2024
6.0.15 4 05/09/2024
6.0.14 5 07/13/2023
6.0.13 4 05/03/2024
6.0.12 2 05/22/2024
6.0.10 4 05/14/2024
6.0.9 3 05/09/2024
6.0.8 5 05/09/2024
6.0.6 5 05/24/2024
6.0.5 7 08/04/2023
6.0.2 16 01/04/2024
6.0.1 4 05/05/2024
6.0.0-rc.2.21480.5 3 05/09/2024
6.0.0-preview.4.21253.1 2 05/11/2024
6.0.0-preview.3.21201.2 2 05/01/2024
5.0.16 3 05/11/2024
5.0.13 3 05/22/2024
5.0.6 3 05/21/2024
5.0.3 3 05/06/2024
5.0.0-rc.2.20475.6 2 05/23/2024
5.0.0-preview.6.20312.4 3 05/01/2024
5.0.0-preview.4.20220.10 5 05/10/2024
3.1.29 4 05/20/2024
3.1.28 4 05/25/2024
3.1.27 5 05/11/2024
3.1.25 3 05/08/2024
3.1.22 3 05/30/2024
3.1.20 6 05/23/2024
3.1.13 11 03/11/2024
3.1.10 2 05/07/2024
3.1.8 2 05/11/2024
3.1.5 5 05/09/2024
3.0.3 5 05/18/2024
3.0.2 4 05/02/2024
3.0.1 3 05/27/2024
3.0.0-rc1.19456.14 8 05/03/2024
3.0.0-preview7.19362.6 3 05/06/2024
3.0.0-preview6.19304.10 3 05/09/2024
3.0.0-preview.19074.3 3 05/01/2024
3.0.0-preview.18572.1 3 05/05/2024
2.2.4 4 05/18/2024
2.1.8 4 05/29/2024
2.1.1 3 01/31/2024
2.1.0 2 05/21/2024
2.1.0-rc1-final 3 05/09/2024
2.1.0-preview1-final 3 05/07/2024
2.0.3 3 05/21/2024
2.0.0-preview2-final 4 05/13/2024
1.1.4 3 05/15/2024
1.1.1 4 01/31/2024
1.1.0-preview1-final 4 05/05/2024
1.0.2 2 05/08/2024
1.0.0 6 05/13/2024
1.0.0-rc2-final 3 05/02/2024