Microsoft.EntityFrameworkCore 9.0.0-rc.1.24451.1

Prefix Reserved
This is a prerelease version of Microsoft.EntityFrameworkCore.

Requires NuGet 3.6 or higher.

dotnet add package Microsoft.EntityFrameworkCore --version 9.0.0-rc.1.24451.1                
NuGet\Install-Package Microsoft.EntityFrameworkCore -Version 9.0.0-rc.1.24451.1                
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-rc.1.24451.1" />                
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-rc.1.24451.1                
#r "nuget: Microsoft.EntityFrameworkCore, 9.0.0-rc.1.24451.1"                
#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-rc.1.24451.1&prerelease

// Install Microsoft.EntityFrameworkCore as a Cake Tool
#tool nuget:?package=Microsoft.EntityFrameworkCore&version=9.0.0-rc.1.24451.1&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 (8.0K)

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

Package Downloads
Microsoft.EntityFrameworkCore.Relational

Shared Entity Framework Core components for relational database providers.

Microsoft.EntityFrameworkCore.InMemory

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

Npgsql.EntityFrameworkCore.PostgreSQL

PostgreSQL/Npgsql provider for Entity Framework Core.

Microsoft.EntityFrameworkCore.Proxies

Lazy loading proxies for Entity Framework Core.

Microsoft.AspNetCore.App

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 (571)

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

Repository Stars
jasontaylordev/CleanArchitecture
Clean Architecture Solution Template 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. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
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-rc.1.24451.1 8,678 9/10/2024
9.0.0-preview.7.24405.3 26,033 8/13/2024
9.0.0-preview.6.24327.4 40,980 7/9/2024
9.0.0-preview.5.24306.3 28,689 6/11/2024
9.0.0-preview.4.24267.1 34,152 5/21/2024
9.0.0-preview.3.24172.4 129,739 4/11/2024
9.0.0-preview.2.24128.4 47,568 3/12/2024
9.0.0-preview.1.24081.2 64,173 2/13/2024
8.0.8 3,402,972 8/13/2024
8.0.7 5,296,156 7/9/2024
8.0.6 7,832,218 5/28/2024
8.0.5 3,590,808 5/14/2024
8.0.4 12,033,598 4/9/2024
8.0.3 6,560,562 3/12/2024
8.0.2 11,150,203 2/13/2024
8.0.1 8,655,729 1/9/2024
8.0.0 19,601,534 11/14/2023
8.0.0-rc.2.23480.1 417,574 10/10/2023
8.0.0-rc.1.23419.6 128,697 9/12/2023
8.0.0-preview.7.23375.4 86,179 8/8/2023
8.0.0-preview.6.23329.4 140,049 7/11/2023
8.0.0-preview.5.23280.1 120,165 6/13/2023
8.0.0-preview.4.23259.3 116,074 5/16/2023
8.0.0-preview.3.23174.2 171,743 4/11/2023
8.0.0-preview.2.23128.3 183,454 3/14/2023
8.0.0-preview.1.23111.4 131,818 2/21/2023
7.0.20 937,722 5/28/2024
7.0.19 303,696 5/14/2024
7.0.18 1,172,259 4/9/2024
7.0.17 1,150,533 3/12/2024
7.0.16 1,565,320 2/13/2024
7.0.15 2,432,756 1/9/2024
7.0.14 4,814,618 11/14/2023
7.0.13 5,172,556 10/24/2023
7.0.12 3,727,598 10/10/2023
7.0.11 10,898,897 9/12/2023
7.0.10 8,228,645 8/8/2023
7.0.9 7,354,149 7/11/2023
7.0.8 4,771,571 6/22/2023
7.0.7 3,314,397 6/13/2023
7.0.5 22,084,337 4/11/2023
7.0.4 8,497,508 3/14/2023
7.0.3 12,095,370 2/14/2023
7.0.2 16,058,208 1/10/2023
7.0.1 8,879,536 12/13/2022
7.0.0 22,963,902 11/7/2022
7.0.0-rc.2.22472.11 205,379 10/11/2022
7.0.0-rc.1.22426.7 206,707 9/14/2022
7.0.0-preview.7.22376.2 88,377 8/9/2022
7.0.0-preview.6.22329.4 69,638 7/12/2022
7.0.0-preview.5.22302.2 60,956 6/14/2022
7.0.0-preview.4.22229.2 74,648 5/10/2022
7.0.0-preview.3.22175.1 74,978 4/13/2022
7.0.0-preview.2.22153.1 83,722 3/14/2022
7.0.0-preview.1.22076.6 53,868 2/17/2022
6.0.33 218,291 8/13/2024
6.0.32 315,732 7/9/2024
6.0.31 553,808 5/28/2024
6.0.30 285,542 5/14/2024
6.0.29 1,456,422 4/9/2024
6.0.28 933,372 3/12/2024
6.0.27 1,272,713 2/13/2024
6.0.26 1,969,217 1/9/2024
6.0.25 2,708,232 11/14/2023
6.0.24 1,426,624 10/24/2023
6.0.23 1,027,634 10/10/2023
6.0.22 2,718,528 9/12/2023
6.0.21 2,885,409 8/8/2023
6.0.20 2,371,095 7/11/2023
6.0.19 1,889,102 6/22/2023
6.0.18 1,082,621 6/13/2023
6.0.16 6,366,951 4/11/2023
6.0.15 3,607,585 3/14/2023
6.0.14 4,533,466 2/14/2023
6.0.13 6,122,772 1/10/2023
6.0.12 9,291,018 12/13/2022
6.0.11 8,802,615 11/7/2022
6.0.10 15,665,346 10/11/2022
6.0.9 13,841,943 9/13/2022
6.0.8 16,391,274 8/9/2022
6.0.7 43,961,330 7/12/2022
6.0.6 13,269,583 6/14/2022
6.0.5 20,259,714 5/10/2022
6.0.4 16,398,352 4/11/2022
6.0.3 21,570,562 3/8/2022
6.0.2 18,258,696 2/8/2022
6.0.1 29,682,239 12/14/2021
6.0.0 56,416,740 11/8/2021
6.0.0-rc.2.21480.5 309,846 10/12/2021
6.0.0-rc.1.21452.10 220,498 9/14/2021
6.0.0-preview.7.21378.4 91,005 8/10/2021
6.0.0-preview.6.21352.1 42,663 7/14/2021
6.0.0-preview.5.21301.9 179,962 6/15/2021
6.0.0-preview.4.21253.1 71,075 5/24/2021
6.0.0-preview.3.21201.2 92,733 4/8/2021
6.0.0-preview.2.21154.2 72,112 3/11/2021
6.0.0-preview.1.21102.2 92,447 2/12/2021
5.0.17 6,615,134 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 1,398,503 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 2,146,248 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 2,254,736 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 4,171,310 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 4,583,175 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 7,997,670 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 12,650,706 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 9,812,505 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 8,978,723 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 13,698,617 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 7,860,778 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 10,881,110 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 7,932,527 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 7,834,643 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 10,179,691 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 15,156,091 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 24,668,620 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.6 372,007 10/13/2020
5.0.0-rc.1.20451.13 315,912 9/14/2020
5.0.0-preview.8.20407.4 198,681 8/25/2020
5.0.0-preview.7.20365.15 112,187 7/21/2020
5.0.0-preview.6.20312.4 62,617 6/25/2020
5.0.0-preview.5.20278.2 47,497 6/10/2020
5.0.0-preview.4.20220.10 72,265 5/18/2020
5.0.0-preview.3.20181.2 92,401 4/23/2020
5.0.0-preview.2.20159.4 60,355 4/2/2020
5.0.0-preview.2.20120.8 45,465 3/16/2020
3.1.32 3,661,496 12/13/2022
3.1.31 761,747 11/8/2022
3.1.30 624,290 10/11/2022
3.1.29 989,338 9/13/2022
3.1.28 739,898 8/9/2022
3.1.27 674,139 7/12/2022
3.1.26 570,552 6/14/2022
3.1.25 995,545 5/10/2022
3.1.24 613,504 4/11/2022
3.1.23 989,644 3/8/2022
3.1.22 3,046,646 12/14/2021
3.1.21 2,433,778 11/7/2021
3.1.20 1,392,197 10/11/2021
3.1.19 2,347,998 9/14/2021
3.1.18 4,960,377 8/10/2021
3.1.17 1,789,152 7/13/2021
3.1.16 2,261,606 6/8/2021
3.1.15 2,614,642 5/11/2021
3.1.14 2,988,773 4/6/2021
3.1.13 4,353,526 3/9/2021
3.1.12 2,899,233 2/9/2021
3.1.11 5,228,017 1/12/2021
3.1.10 8,125,009 11/9/2020
3.1.9 11,653,464 10/13/2020
3.1.8 17,262,450 9/8/2020
3.1.7 9,620,472 8/11/2020
3.1.6 10,426,914 7/14/2020
3.1.5 12,350,269 6/9/2020
3.1.4 17,336,562 5/12/2020
3.1.3 26,861,961 3/24/2020
3.1.2 11,561,796 2/19/2020
3.1.1 19,291,632 1/14/2020
3.1.0 32,450,891 12/3/2019
3.1.0-preview3.19554.8 160,425 11/13/2019
3.1.0-preview2.19525.5 32,043 11/1/2019
3.1.0-preview1.19506.2 727,639 10/15/2019
3.0.3 178,905 2/19/2020
3.0.2 78,490 1/14/2020
3.0.1 1,364,395 11/18/2019
3.0.0 18,260,614 9/23/2019
3.0.0-rc1.19456.14 45,967 9/16/2019
3.0.0-preview9.19423.6 1,342,111 9/4/2019
3.0.0-preview8.19405.11 396,910 8/13/2019
3.0.0-preview7.19362.6 88,107 7/23/2019
3.0.0-preview6.19304.10 161,654 6/12/2019
3.0.0-preview5.19227.1 647,856 5/6/2019
3.0.0-preview4.19216.3 22,579 4/18/2019
3.0.0-preview3.19153.1 197,016 3/6/2019
3.0.0-preview.19074.3 30,566 1/29/2019
3.0.0-preview.18572.1 47,217 12/3/2018
2.2.6 30,568,647 7/9/2019 2.2.6 is deprecated because it is no longer maintained.
2.2.4 19,045,408 4/9/2019 2.2.4 is deprecated because it is no longer maintained.
2.2.3 5,240,384 3/11/2019 2.2.3 is deprecated because it is no longer maintained.
2.2.2 6,284,972 2/12/2019 2.2.2 is deprecated because it is no longer maintained.
2.2.1 6,736,059 1/8/2019 2.2.1 is deprecated because it is no longer maintained.
2.2.0 20,473,982 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 183,358 10/17/2018
2.2.0-preview2-35157 143,668 9/12/2018
2.2.0-preview1-35029 80,507 8/22/2018
2.1.14 3,758,260 11/18/2019
2.1.11 3,645,200 5/14/2019
2.1.8 3,575,801 2/12/2019
2.1.4 15,195,615 10/1/2018
2.1.3 4,821,541 9/11/2018
2.1.2 7,973,271 8/21/2018
2.1.1 14,908,563 6/18/2018
2.1.0 12,829,117 5/29/2018
2.1.0-rc1-final 217,183 5/6/2018
2.1.0-preview2-final 196,320 4/10/2018
2.1.0-preview1-final 310,517 2/26/2018
2.0.3 5,168,843 5/7/2018 2.0.3 is deprecated because it is no longer maintained.
2.0.2 6,463,278 3/13/2018 2.0.2 is deprecated because it is no longer maintained.
2.0.1 12,106,268 11/14/2017 2.0.1 is deprecated because it is no longer maintained.
2.0.0 25,831,905 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 93,860 6/28/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 1,079,897 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.1.6 5,374,318 7/10/2018 1.1.6 is deprecated because it is no longer maintained.
1.1.5 1,217,847 12/12/2017 1.1.5 is deprecated because it is no longer maintained.
1.1.4 215,074 11/14/2017 1.1.4 is deprecated because it is no longer maintained.
1.1.3 303,052 9/20/2017 1.1.3 is deprecated because it is no longer maintained.
1.1.2 4,766,020 5/9/2017 1.1.2 is deprecated because it is no longer maintained.
1.1.1 2,977,238 3/6/2017 1.1.1 is deprecated because it is no longer maintained.
1.1.0 6,337,040 11/16/2016 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview1-final 45,673 10/24/2016 1.1.0-preview1-final is deprecated because it is no longer maintained.
1.0.6 52,168 11/14/2017 1.0.6 is deprecated because it is no longer maintained.
1.0.5 41,493 9/20/2017 1.0.5 is deprecated because it is no longer maintained.
1.0.4 56,239 5/9/2017 1.0.4 is deprecated because it is no longer maintained.
1.0.3 593,310 3/6/2017 1.0.3 is deprecated because it is no longer maintained.
1.0.2 77,457 12/12/2016 1.0.2 is deprecated because it is no longer maintained.
1.0.1 686,711 9/13/2016 1.0.1 is deprecated because it is no longer maintained.
1.0.0 1,428,258 6/27/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc2-final 131,585 5/16/2016 1.0.0-rc2-final is deprecated because it is no longer maintained.