Microsoft.EntityFrameworkCore 11.0.0-preview.3.26207.106

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
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
133
Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore
Contains Entity Framework Core Services used by ASP.NET Core Code Generators.
133
Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore
Contains Entity Framework Core Services used by ASP.NET Core Code Generators.
131
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
131
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
130
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
129
Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore
Contains Entity Framework Core Services used by ASP.NET Core Code Generators.
129
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
128
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
126
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers. This package was built from the source code at https://github.com/aspnet/EntityFrameworkCore/tree/8e7402701ea1416b7fe55e1863ae65b3147c02c7
125
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
122
Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore
Contains Entity Framework Core Services used by ASP.NET Core Code Generators.
122
Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore
Contains Entity Framework Core Services used by ASP.NET Core Code Generators.
121
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers. This package was built from the source code at https://github.com/aspnet/EntityFrameworkCore/tree/7cd2eb79628a2511af8e8d2699c29380909ab004
121
Microsoft.EntityFrameworkCore.Relational
Shared Entity Framework Core components for relational database providers.
120

.NET 11.0

Version Downloads Last updated
11.0.0-preview.3.26207.106 1 5/3/2026
11.0.0-preview.2.26159.112 6 3/12/2026
11.0.0-preview.1.26104.118 9 2/12/2026
10.0.7 1 5/3/2026
10.0.6 1 5/3/2026
10.0.5 5 3/14/2026
10.0.4 5 3/12/2026
10.0.3 10 2/12/2026
10.0.2 18 1/15/2026
10.0.1 21 12/10/2025
10.0.0 42 11/12/2025
10.0.0-rc.2.25502.107 52 10/15/2025
10.0.0-rc.1.25451.107 64 9/10/2025
10.0.0-preview.7.25380.108 64 8/12/2025
10.0.0-preview.6.25358.103 70 7/15/2025
10.0.0-preview.5.25277.114 59 6/8/2025
10.0.0-preview.4.25258.110 86 5/16/2025
10.0.0-preview.3.25171.6 76 4/12/2025
10.0.0-preview.2.25163.8 80 3/18/2025
10.0.0-preview.1.25081.1 79 2/28/2025
9.0.15 1 5/3/2026
9.0.14 5 3/12/2026
9.0.13 10 2/12/2026
9.0.12 13 1/15/2026
9.0.11 39 11/12/2025
9.0.10 53 10/15/2025
9.0.9 75 9/10/2025
9.0.8 62 8/5/2025
9.0.7 81 7/11/2025
9.0.6 81 6/15/2025
9.0.5 74 5/17/2025
9.0.4 81 4/8/2025
9.0.3 94 3/13/2025
9.0.2 100 2/15/2025
9.0.1 104 1/18/2025
9.0.0 97 11/12/2024
9.0.0-rc.2.24474.1 98 10/11/2024
9.0.0-rc.1.24451.1 88 9/11/2024
9.0.0-preview.7.24405.3 95 8/14/2024
9.0.0-preview.6.24327.4 95 7/10/2024
9.0.0-preview.5.24306.3 110 6/14/2024
9.0.0-preview.4.24267.1 96 5/25/2024
9.0.0-preview.3.24172.4 92 4/14/2024
9.0.0-preview.2.24128.4 96 3/21/2024
9.0.0-preview.1.24081.2 100 2/21/2024
8.0.26 1 5/3/2026
8.0.25 5 3/12/2026
8.0.24 6 2/12/2026
8.0.23 12 1/15/2026
8.0.22 35 11/12/2025
8.0.21 52 10/15/2025
8.0.20 56 9/10/2025
8.0.19 48 8/6/2025
8.0.18 74 7/11/2025
8.0.17 69 6/15/2025
8.0.16 80 5/17/2025
8.0.15 79 4/9/2025
8.0.14 73 3/13/2025
8.0.13 74 2/20/2025
8.0.12 80 1/18/2025
8.0.11 89 11/13/2024
8.0.10 100 10/12/2024
8.0.8 85 8/13/2024
8.0.7 99 7/9/2024
8.0.6 98 5/29/2024
8.0.5 90 5/23/2024
8.0.4 93 4/10/2024
8.0.3 115 3/20/2024
8.0.2 96 2/22/2024
8.0.1 107 1/11/2024
8.0.0 104 11/15/2023
8.0.0-rc.2.23480.1 115 10/13/2023
8.0.0-rc.1.23419.6 119 9/15/2023
8.0.0-preview.7.23375.4 114 8/22/2023
8.0.0-preview.6.23329.4 112 7/31/2023
8.0.0-preview.5.23280.1 111 7/31/2023
8.0.0-preview.4.23259.3 120 5/20/2023
8.0.0-preview.3.23174.2 107 5/14/2023
8.0.0-preview.2.23128.3 119 7/31/2023
8.0.0-preview.1.23111.4 142 2/23/2023
7.0.20 94 5/29/2024
7.0.19 90 5/23/2024
7.0.18 104 4/10/2024
7.0.17 104 3/20/2024
7.0.16 100 2/22/2024
7.0.15 92 1/15/2024
7.0.14 113 11/15/2023
7.0.13 108 10/28/2023
7.0.12 111 10/10/2023
7.0.11 97 9/16/2023
7.0.10 114 8/20/2023
7.0.9 120 7/31/2023
7.0.8 109 7/31/2023
7.0.7 115 7/31/2023
7.0.5 119 5/12/2023
7.0.4 111 5/12/2023
7.0.3 103 2/21/2023
7.0.2 102 2/21/2023
7.0.1 130 2/14/2023
7.0.0 112 12/3/2022
7.0.0-rc.2.22472.11 112 11/9/2022
7.0.0-rc.1.22426.7 120 9/15/2022
7.0.0-preview.7.22376.2 95 9/11/2022
7.0.0-preview.6.22329.4 120 9/14/2022
7.0.0-preview.5.22302.2 137 6/27/2022
7.0.0-preview.4.22229.2 120 6/30/2022
7.0.0-preview.3.22175.1 127 6/30/2022
7.0.0-preview.2.22153.1 124 6/30/2022
7.0.0-preview.1.22076.6 117 6/30/2022
6.0.36 89 11/13/2024
6.0.35 93 10/11/2024
6.0.33 97 8/14/2024
6.0.32 107 7/9/2024
6.0.31 102 5/29/2024
6.0.30 103 5/19/2024
6.0.29 103 4/10/2024
6.0.28 108 3/20/2024
6.0.27 102 2/22/2024
6.0.26 93 1/15/2024
6.0.25 107 11/16/2023
6.0.24 97 10/28/2023
6.0.23 110 10/10/2023
6.0.22 106 9/17/2023
6.0.21 103 8/22/2023
6.0.20 102 7/31/2023
6.0.19 139 7/31/2023
6.0.18 111 7/31/2023
6.0.16 118 5/12/2023
6.0.15 116 3/16/2023
6.0.14 104 2/21/2023
6.0.13 123 2/9/2023
6.0.12 122 12/30/2022
6.0.11 118 12/3/2022
6.0.10 108 12/3/2022
6.0.9 115 9/14/2022
6.0.8 113 9/14/2022
6.0.7 151 7/26/2022
6.0.6 114 6/30/2022
6.0.5 109 6/30/2022
6.0.4 104 6/30/2022
6.0.3 111 6/30/2022
6.0.2 118 6/30/2022
6.0.1 99 6/30/2022
6.0.0 135 6/30/2022
6.0.0-rc.2.21480.5 119 6/30/2022
6.0.0-rc.1.21452.10 117 6/30/2022
6.0.0-preview.7.21378.4 129 6/30/2022
6.0.0-preview.6.21352.1 119 6/30/2022
6.0.0-preview.5.21301.9 145 6/30/2022
6.0.0-preview.4.21253.1 117 6/30/2022
6.0.0-preview.3.21201.2 112 6/30/2022
6.0.0-preview.2.21154.2 126 6/30/2022
6.0.0-preview.1.21102.2 129 6/30/2022
5.0.17 122 6/30/2022
5.0.16 120 6/30/2022
5.0.15 140 6/30/2022
5.0.14 125 6/30/2022
5.0.13 117 6/30/2022
5.0.12 116 6/30/2022
5.0.11 114 6/30/2022
5.0.10 136 6/30/2022
5.0.9 133 6/30/2022
5.0.8 105 6/30/2022
5.0.7 126 6/30/2022
5.0.6 110 6/30/2022
5.0.5 113 6/30/2022
5.0.4 117 6/30/2022
5.0.3 109 6/30/2022
5.0.2 108 6/30/2022
5.0.1 119 6/30/2022
5.0.0 111 6/30/2022
5.0.0-rc.2.20475.6 104 6/30/2022
5.0.0-rc.1.20451.13 131 6/30/2022
5.0.0-preview.8.20407.4 122 6/30/2022
5.0.0-preview.7.20365.15 111 6/30/2022
5.0.0-preview.6.20312.4 145 6/30/2022
5.0.0-preview.5.20278.2 112 6/30/2022
5.0.0-preview.4.20220.10 108 6/30/2022
5.0.0-preview.3.20181.2 107 6/30/2022
5.0.0-preview.2.20159.4 107 6/30/2022
5.0.0-preview.2.20120.8 116 6/30/2022
3.1.32 123 2/1/2023
3.1.31 103 12/3/2022
3.1.30 116 11/7/2022
3.1.29 109 9/14/2022
3.1.28 118 9/14/2022
3.1.27 110 9/14/2022
3.1.26 110 6/30/2022
3.1.25 105 6/30/2022
3.1.24 113 6/30/2022
3.1.23 121 6/30/2022
3.1.22 114 6/30/2022
3.1.21 104 6/30/2022
3.1.20 107 6/30/2022
3.1.19 109 6/30/2022
3.1.18 109 6/30/2022
3.1.17 122 6/30/2022
3.1.16 107 6/30/2022
3.1.15 104 6/30/2022
3.1.14 121 6/30/2022
3.1.13 128 6/30/2022
3.1.12 109 6/30/2022
3.1.11 116 6/30/2022
3.1.10 101 6/30/2022
3.1.9 107 6/30/2022
3.1.8 113 6/30/2022
3.1.7 111 6/30/2022
3.1.6 121 6/30/2022
3.1.5 103 6/30/2022
3.1.4 117 6/30/2022
3.1.3 112 6/30/2022
3.1.2 113 6/30/2022
3.1.1 114 6/30/2022
3.1.0 125 6/30/2022
3.1.0-preview3.19554.8 117 6/30/2022
3.1.0-preview2.19525.5 121 6/30/2022
3.1.0-preview1.19506.2 106 6/30/2022
3.0.3 111 6/30/2022
3.0.2 126 6/30/2022
3.0.1 127 6/30/2022
3.0.0 123 6/30/2022
3.0.0-rc1.19456.14 141 6/30/2022
3.0.0-preview9.19423.6 118 6/30/2022
3.0.0-preview8.19405.11 111 6/30/2022
3.0.0-preview7.19362.6 130 6/30/2022
3.0.0-preview6.19304.10 127 6/30/2022
3.0.0-preview5.19227.1 103 6/30/2022
3.0.0-preview4.19216.3 115 6/30/2022
3.0.0-preview3.19153.1 123 6/30/2022
3.0.0-preview.19074.3 117 6/30/2022
3.0.0-preview.18572.1 123 6/30/2022
2.3.0 95 1/21/2025
2.2.6 110 6/30/2022
2.2.4 112 6/30/2022
2.2.3 124 6/30/2022
2.2.2 106 6/30/2022
2.2.1 131 6/30/2022
2.2.0 108 6/30/2022
2.2.0-preview3-35497 126 6/30/2022
2.2.0-preview2-35157 127 6/30/2022
2.2.0-preview1-35029 144 6/30/2022
2.1.14 101 6/30/2022
2.1.11 133 6/30/2022
2.1.8 137 6/30/2022
2.1.4 109 6/30/2022
2.1.3 104 6/30/2022
2.1.2 141 6/30/2022
2.1.1 105 6/30/2022
2.1.0 130 6/30/2022
2.1.0-rc1-final 105 6/30/2022
2.1.0-preview2-final 113 6/30/2022
2.1.0-preview1-final 121 6/30/2022
2.0.3 104 6/30/2022
2.0.2 108 6/30/2022
2.0.1 115 6/30/2022
2.0.0 109 6/30/2022
2.0.0-preview2-final 106 6/30/2022
2.0.0-preview1-final 121 6/30/2022
1.1.6 106 6/30/2022
1.1.5 133 6/30/2022
1.1.4 125 6/30/2022
1.1.3 114 6/30/2022
1.1.2 125 6/30/2022
1.1.1 140 6/30/2022
1.1.0 113 6/30/2022
1.1.0-preview1-final 107 6/30/2022
1.0.6 136 6/30/2022
1.0.5 109 6/30/2022
1.0.4 102 6/30/2022
1.0.3 111 6/30/2022
1.0.2 118 6/30/2022
1.0.1 115 6/30/2022
1.0.0 132 6/30/2022
1.0.0-rc2-final 112 6/30/2022