Microsoft.EntityFrameworkCore 9.0.0-preview.2.24128.4

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
This is a prerelease version of Microsoft.EntityFrameworkCore.
There is a newer prerelease version of this package available.
See the version list below for details.

Requires NuGet 3.6 or higher.

dotnet add package Microsoft.EntityFrameworkCore --version 9.0.0-preview.2.24128.4
NuGet\Install-Package Microsoft.EntityFrameworkCore -Version 9.0.0-preview.2.24128.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0-preview.2.24128.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.EntityFrameworkCore --version 9.0.0-preview.2.24128.4
#r "nuget: Microsoft.EntityFrameworkCore, 9.0.0-preview.2.24128.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Microsoft.EntityFrameworkCore as a Cake Addin
#addin nuget:?package=Microsoft.EntityFrameworkCore&version=9.0.0-preview.2.24128.4&prerelease

// Install Microsoft.EntityFrameworkCore as a Cake Tool
#tool nuget:?package=Microsoft.EntityFrameworkCore&version=9.0.0-preview.2.24128.4&prerelease

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.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (7.5K)

Showing the top 5 NuGet packages that depend on Microsoft.EntityFrameworkCore:

Package Downloads
Microsoft.EntityFrameworkCore.Relational The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Shared Entity Framework Core components for relational database providers.

Microsoft.EntityFrameworkCore.InMemory The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

In-memory database provider for Entity Framework Core (to be used for testing purposes).

Npgsql.EntityFrameworkCore.PostgreSQL The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

PostgreSQL/Npgsql provider for Entity Framework Core.

Microsoft.EntityFrameworkCore.Proxies The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Lazy loading proxies for Entity Framework Core.

Microsoft.AspNetCore.App The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Provides a default set of APIs for building an ASP.NET Core application. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.

GitHub repositories (541)

Showing the top 5 popular GitHub repositories that depend on Microsoft.EntityFrameworkCore:

Repository Stars
jasontaylordev/CleanArchitecture
Clean Architecture Solution Template for ASP.NET Core
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
abpframework/abp
Open Source Web Application Framework for ASP.NET Core. Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET and the ASP.NET Core platforms. Provides the fundamental infrastructure, production-ready startup templates, application modules, UI themes, tooling, guides and documentation.
aspnetboilerplate/aspnetboilerplate
ASP.NET Boilerplate - Web Application Framework
kgrzybek/modular-monolith-with-ddd
Full Modular Monolith application with Domain-Driven Design approach.
Version Downloads Last updated
9.0.0-preview.3.24172.4 14,012 4/11/2024
9.0.0-preview.2.24128.4 26,336 3/12/2024
9.0.0-preview.1.24081.2 48,702 2/13/2024
8.0.4 1,085,713 4/9/2024
8.0.3 2,686,610 3/12/2024
8.0.2 4,453,167 2/13/2024
8.0.1 5,000,236 1/9/2024
8.0.0 9,043,539 11/14/2023
8.0.0-rc.2.23480.1 341,843 10/10/2023
8.0.0-rc.1.23419.6 116,698 9/12/2023
8.0.0-preview.7.23375.4 69,565 8/8/2023
8.0.0-preview.6.23329.4 112,078 7/11/2023
8.0.0-preview.5.23280.1 105,464 6/13/2023
8.0.0-preview.4.23259.3 101,751 5/16/2023
8.0.0-preview.3.23174.2 140,273 4/11/2023
8.0.0-preview.2.23128.3 155,338 3/14/2023
8.0.0-preview.1.23111.4 124,551 2/21/2023
7.0.18 132,979 4/9/2024
7.0.17 465,201 3/12/2024
7.0.16 960,805 2/13/2024
7.0.15 1,628,023 1/9/2024
7.0.14 3,543,756 11/14/2023
7.0.13 4,004,771 10/24/2023
7.0.12 3,138,799 10/10/2023
7.0.11 8,474,708 9/12/2023
7.0.10 6,883,977 8/8/2023
7.0.9 6,047,358 7/11/2023
7.0.8 4,083,166 6/22/2023
7.0.7 2,926,474 6/13/2023
7.0.5 19,111,028 4/11/2023
7.0.4 7,661,493 3/14/2023
7.0.3 10,697,622 2/14/2023
7.0.2 13,959,207 1/10/2023
7.0.1 7,984,836 12/13/2022
7.0.0 18,634,095 11/7/2022
7.0.0-rc.2.22472.11 191,049 10/11/2022
7.0.0-rc.1.22426.7 199,810 9/14/2022
7.0.0-preview.7.22376.2 84,386 8/9/2022
7.0.0-preview.6.22329.4 62,791 7/12/2022
7.0.0-preview.5.22302.2 57,445 6/14/2022
7.0.0-preview.4.22229.2 70,558 5/10/2022
7.0.0-preview.3.22175.1 72,006 4/13/2022
7.0.0-preview.2.22153.1 82,270 3/14/2022
7.0.0-preview.1.22076.6 50,304 2/17/2022
6.0.29 131,249 4/9/2024
6.0.28 360,850 3/12/2024
6.0.27 621,737 2/13/2024
6.0.26 1,190,658 1/9/2024
6.0.25 1,799,607 11/14/2023
6.0.24 1,073,625 10/24/2023
6.0.23 803,010 10/10/2023
6.0.22 2,005,845 9/12/2023
6.0.21 2,213,140 8/8/2023
6.0.20 1,923,698 7/11/2023
6.0.19 1,522,418 6/22/2023
6.0.18 915,466 6/13/2023
6.0.16 5,348,750 4/11/2023
6.0.15 3,154,121 3/14/2023
6.0.14 3,877,850 2/14/2023
6.0.13 5,362,712 1/10/2023
6.0.12 7,834,448 12/13/2022
6.0.11 7,873,576 11/7/2022
6.0.10 13,976,426 10/11/2022
6.0.9 12,539,817 9/13/2022
6.0.8 14,779,923 8/9/2022
6.0.7 38,759,927 7/12/2022
6.0.6 12,158,197 6/14/2022
6.0.5 18,553,565 5/10/2022
6.0.4 14,863,845 4/11/2022
6.0.3 19,481,724 3/8/2022
6.0.2 16,891,362 2/8/2022
6.0.1 27,259,021 12/14/2021
6.0.0 48,771,279 11/8/2021
6.0.0-rc.2.21480.5 300,846 10/12/2021
6.0.0-rc.1.21452.10 187,209 9/14/2021
6.0.0-preview.7.21378.4 87,054 8/10/2021
6.0.0-preview.6.21352.1 41,490 7/14/2021
6.0.0-preview.5.21301.9 171,510 6/15/2021
6.0.0-preview.4.21253.1 70,309 5/24/2021
6.0.0-preview.3.21201.2 90,102 4/8/2021
6.0.0-preview.2.21154.2 65,645 3/11/2021
6.0.0-preview.1.21102.2 90,430 2/12/2021
5.0.17 5,815,772 5/10/2022
5.0.16 1,311,000 4/11/2022
5.0.15 2,001,930 3/8/2022
5.0.14 2,183,237 2/8/2022
5.0.13 3,976,639 12/14/2021
5.0.12 4,397,575 11/7/2021
5.0.11 7,652,154 10/12/2021
5.0.10 12,118,043 9/14/2021
5.0.9 9,467,333 8/10/2021
5.0.8 8,596,513 7/13/2021
5.0.7 13,197,815 6/8/2021
5.0.6 7,597,380 5/11/2021
5.0.5 10,488,481 4/6/2021
5.0.4 7,747,580 3/9/2021
5.0.3 7,674,298 2/9/2021
5.0.2 9,972,269 1/12/2021
5.0.1 14,634,492 12/8/2020
5.0.0 23,374,091 11/9/2020
5.0.0-rc.2.20475.6 366,688 10/13/2020
5.0.0-rc.1.20451.13 313,398 9/14/2020
5.0.0-preview.8.20407.4 195,339 8/25/2020
5.0.0-preview.7.20365.15 110,988 7/21/2020
5.0.0-preview.6.20312.4 61,827 6/25/2020
5.0.0-preview.5.20278.2 46,271 6/10/2020
5.0.0-preview.4.20220.10 71,101 5/18/2020
5.0.0-preview.3.20181.2 91,064 4/23/2020
5.0.0-preview.2.20159.4 59,425 4/2/2020
5.0.0-preview.2.20120.8 44,928 3/16/2020
3.1.32 2,654,244 12/13/2022
3.1.31 584,777 11/8/2022
3.1.30 544,524 10/11/2022
3.1.29 796,923 9/13/2022
3.1.28 633,068 8/9/2022
3.1.27 606,587 7/12/2022
3.1.26 524,641 6/14/2022
3.1.25 924,246 5/10/2022
3.1.24 580,324 4/11/2022
3.1.23 928,825 3/8/2022
3.1.22 2,794,375 12/14/2021
3.1.21 2,255,605 11/7/2021
3.1.20 1,274,733 10/11/2021
3.1.19 2,204,585 9/14/2021
3.1.18 4,734,829 8/10/2021
3.1.17 1,708,166 7/13/2021
3.1.16 2,132,735 6/8/2021
3.1.15 2,490,987 5/11/2021
3.1.14 2,897,724 4/6/2021
3.1.13 4,185,765 3/9/2021
3.1.12 2,801,391 2/9/2021
3.1.11 5,056,856 1/12/2021
3.1.10 7,945,195 11/9/2020
3.1.9 11,372,999 10/13/2020
3.1.8 16,932,462 9/8/2020
3.1.7 9,263,072 8/11/2020
3.1.6 10,169,372 7/14/2020
3.1.5 12,038,902 6/9/2020
3.1.4 16,852,083 5/12/2020
3.1.3 25,983,184 3/24/2020
3.1.2 11,270,060 2/19/2020
3.1.1 18,763,732 1/14/2020
3.1.0 31,120,757 12/3/2019
3.1.0-preview3.19554.8 159,573 11/13/2019
3.1.0-preview2.19525.5 31,792 11/1/2019
3.1.0-preview1.19506.2 701,786 10/15/2019
3.0.3 173,586 2/19/2020
3.0.2 77,576 1/14/2020
3.0.1 1,337,538 11/18/2019
3.0.0 17,727,506 9/23/2019
3.0.0-rc1.19456.14 45,625 9/16/2019
3.0.0-preview9.19423.6 1,311,949 9/4/2019
3.0.0-preview8.19405.11 396,173 8/13/2019
3.0.0-preview7.19362.6 87,434 7/23/2019
3.0.0-preview6.19304.10 159,752 6/12/2019
3.0.0-preview5.19227.1 647,067 5/6/2019
3.0.0-preview4.19216.3 22,231 4/18/2019
3.0.0-preview3.19153.1 195,931 3/6/2019
3.0.0-preview.19074.3 30,166 1/29/2019
3.0.0-preview.18572.1 46,593 12/3/2018
2.2.6 29,807,181 7/9/2019
2.2.4 18,723,488 4/9/2019
2.2.3 5,176,928 3/11/2019
2.2.2 6,181,221 2/12/2019
2.2.1 6,642,170 1/8/2019
2.2.0 19,633,738 12/3/2018
2.2.0-preview3-35497 182,489 10/17/2018
2.2.0-preview2-35157 141,236 9/12/2018
2.2.0-preview1-35029 80,180 8/22/2018
2.1.14 3,627,372 11/18/2019
2.1.11 3,606,940 5/14/2019
2.1.8 3,473,314 2/12/2019
2.1.4 15,007,047 10/1/2018
2.1.3 4,775,898 9/11/2018
2.1.2 7,897,325 8/21/2018
2.1.1 14,049,560 6/18/2018
2.1.0 12,529,940 5/29/2018
2.1.0-rc1-final 214,742 5/6/2018
2.1.0-preview2-final 195,309 4/10/2018
2.1.0-preview1-final 308,400 2/26/2018
2.0.3 5,055,286 5/7/2018
2.0.2 6,355,126 3/13/2018
2.0.1 11,893,222 11/14/2017
2.0.0 24,657,415 8/11/2017
2.0.0-preview2-final 93,054 6/28/2017
2.0.0-preview1-final 1,062,117 5/10/2017
1.1.6 4,980,013 7/10/2018
1.1.5 1,199,981 12/12/2017
1.1.4 211,940 11/14/2017
1.1.3 299,712 9/20/2017
1.1.2 4,440,618 5/9/2017
1.1.1 2,827,819 3/6/2017
1.1.0 5,893,540 11/16/2016
1.1.0-preview1-final 45,533 10/24/2016
1.0.6 50,993 11/14/2017
1.0.5 40,609 9/20/2017
1.0.4 55,299 5/9/2017
1.0.3 565,259 3/6/2017
1.0.2 77,165 12/12/2016
1.0.1 637,941 9/13/2016
1.0.0 1,283,455 6/27/2016
1.0.0-rc2-final 130,659 5/16/2016