Microsoft.AspNetCore.Identity.EntityFrameworkCore 10.0.0-preview.2.25164.1

Prefix Reserved
This is a prerelease version of Microsoft.AspNetCore.Identity.EntityFrameworkCore.
dotnet add package Microsoft.AspNetCore.Identity.EntityFrameworkCore --version 10.0.0-preview.2.25164.1
                    
NuGet\Install-Package Microsoft.AspNetCore.Identity.EntityFrameworkCore -Version 10.0.0-preview.2.25164.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.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.0-preview.2.25164.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.0-preview.2.25164.1" />
                    
Directory.Packages.props
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Microsoft.AspNetCore.Identity.EntityFrameworkCore --version 10.0.0-preview.2.25164.1
                    
#r "nuget: Microsoft.AspNetCore.Identity.EntityFrameworkCore, 10.0.0-preview.2.25164.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.
#addin nuget:?package=Microsoft.AspNetCore.Identity.EntityFrameworkCore&version=10.0.0-preview.2.25164.1&prerelease
                    
Install Microsoft.AspNetCore.Identity.EntityFrameworkCore as a Cake Addin
#tool nuget:?package=Microsoft.AspNetCore.Identity.EntityFrameworkCore&version=10.0.0-preview.2.25164.1&prerelease
                    
Install Microsoft.AspNetCore.Identity.EntityFrameworkCore as a Cake Tool

About

Microsoft.AspNetCore.Identity.EntityFrameworkCore utilizes Entity Framework Core to provide functionality enabling the storage of user, role, and other identity-related data in a database.

Key Features

  • Provides user and role management
  • Enables secure authentication and authorization mechanisms
  • Allows storage and validatation of user passwords using hashing
  • Tracks email confirmation for user account validation
  • Tracks two-factor authentication to provide an extra layer of security
  • Tracks failed login attempts to help protect against brute-force attacks enabling locking out user accounts after multiple failed login attempts
  • Uses claims to define fine-grained access control policies
  • Seamlessly integrates with Entity Framework Core for data storage and retrieval

How to Use

To use Microsoft.AspNetCore.Identity.EntityFrameworkCore, follow these steps:

Installation

dotnet add package Microsoft.AspNetCore.Identity.EntityFrameworkCore

Configuration

Add the following code to the Program.cs of your ASP.NET Core app:

builder.Services.AddDbContext<ApplicationDbContext>(options =>
    options.UseSqlServer(builder.Configuration.GetConnectionString("DefaultConnection")));

builder.Services.AddDefaultIdentity<ApplicationUser>()
    .AddEntityFrameworkStores<ApplicationDbContext>();

You can replace ApplicationDbContext with your own database context class derived from IdentityDbContext and ApplicationUser with your own user class containing additional properties derived from IdentityUser.

Make sure to configure the connection string via "ConnectionStrings:DefaultConnection" (or whatever you rename it to) so it can connect to your database.

Main Types

The main types provided by Microsoft.AspNetCore.Identity.EntityFrameworkCore include:

  • IdentityDbContext: Provides the database context for storing and managing user, role, and other identity-related data
  • IdentityUserContext: Provides methods and properties for querying and manipulating user information
  • RoleStore: Provides methods for creating, updating, and deleting roles, as well as querying and managing role-related data
  • UserStore: Provides methods for creating, updating, and deleting users, as well as querying and managing user-related data
  • UserOnlyStore: Provides methods for creating, updating, and deleting users, as well as querying and managing user-related data for users without roles

Additional Documentation

For additional documentation and examples, refer to the official documentation on ASP.NET Core Identity.

Feedback & Contributing

Microsoft.AspNetCore.Identity.EntityFrameworkCore is released as open-source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1.0K)

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

Package Downloads
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.

Microsoft.AspNetCore.All

Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core. 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.

Microsoft.AspNetCore.ApiAuthorization.IdentityServer

ASP.NET Core API Authorization package powered by Identity Server. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/fb4b5a21ebd67b31fff4ddf5c039181da504c932

Microting.eFormApi.BasePn

Package Description

Finbuckle.MultiTenant.EntityFrameworkCore

Entity Framework Core support for Finbuckle.MultiTenant.

GitHub repositories (293)

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

Repository Stars
dotnet/maui
.NET MAUI is the .NET Multi-platform App UI, a framework for building native device applications spanning mobile, tablet, and desktop.
jasontaylordev/CleanArchitecture
Clean Architecture Solution Template for ASP.NET Core
dotnet/efcore
EF Core is a modern object-database mapper for .NET. It supports LINQ queries, change tracking, updates, and schema migrations.
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
dotnet-architecture/eShopOnWeb
Sample ASP.NET Core 8.0 reference application, now community supported: https://github.com/NimblePros/eShopOnWeb
Version Downloads Last updated
10.0.0-preview.2.25164.1 1,363 16 days ago
10.0.0-preview.1.25120.3 2,367 a month ago
9.0.3 190,349 24 days ago
9.0.2 395,711 2 months ago
9.0.1 406,882 3 months ago
9.0.0 938,955 5 months ago
9.0.0-rc.2.24474.3 26,279 6 months ago
9.0.0-rc.1.24452.1 8,128 7 months ago
9.0.0-preview.7.24406.2 29,170 8 months ago
9.0.0-preview.6.24328.4 67,861 9 months ago
9.0.0-preview.5.24306.11 2,889 10 months ago
9.0.0-preview.4.24267.6 3,357 5/21/2024
9.0.0-preview.3.24172.13 71,722 4/11/2024
9.0.0-preview.2.24128.4 3,829 3/12/2024
9.0.0-preview.1.24081.5 25,743 2/13/2024
8.0.14 147,776 24 days ago
8.0.13 204,949 2 months ago
8.0.12 355,799 3 months ago
8.0.11 1,304,169 5 months ago
8.0.10 1,877,520 6 months ago
8.0.8 2,521,952 8 months ago
8.0.7 1,713,051 9 months ago
8.0.6 2,064,496 5/28/2024
8.0.5 920,041 5/14/2024
8.0.4 2,092,602 4/9/2024
8.0.3 1,538,326 3/12/2024
8.0.2 1,897,461 2/13/2024
8.0.1 1,663,285 1/9/2024
8.0.0 3,180,562 11/14/2023
8.0.0-rc.2.23480.2 52,314 10/10/2023
8.0.0-rc.1.23421.29 24,891 9/12/2023
8.0.0-preview.7.23375.9 50,863 8/8/2023
8.0.0-preview.6.23329.11 57,784 7/11/2023
8.0.0-preview.5.23302.2 9,282 6/13/2023
8.0.0-preview.4.23260.4 7,020 5/16/2023
8.0.0-preview.3.23177.8 12,047 4/11/2023
8.0.0-preview.2.23153.2 94,159 3/14/2023
8.0.0-preview.1.23112.2 59,023 2/21/2023
7.0.20 318,733 5/28/2024
7.0.19 35,465 5/14/2024
7.0.18 86,571 4/9/2024
7.0.17 327,240 3/12/2024
7.0.16 197,003 2/13/2024
7.0.15 331,939 1/9/2024
7.0.14 466,558 11/14/2023
7.0.13 738,468 10/24/2023
7.0.12 466,385 10/10/2023
7.0.11 813,411 9/12/2023
7.0.10 921,680 8/8/2023
7.0.9 746,655 7/11/2023
7.0.8 466,093 6/22/2023
7.0.7 269,471 6/13/2023
7.0.5 2,490,524 4/11/2023
7.0.4 911,479 3/14/2023
7.0.3 1,025,884 2/14/2023
7.0.2 1,356,049 1/10/2023
7.0.1 521,865 12/13/2022
7.0.0 1,403,548 11/7/2022
7.0.0-rc.2.22476.2 41,545 10/11/2022
7.0.0-rc.1.22427.2 74,217 9/14/2022
7.0.0-preview.7.22376.6 9,286 8/9/2022
7.0.0-preview.6.22330.3 4,016 7/12/2022
7.0.0-preview.5.22303.8 7,478 6/14/2022
7.0.0-preview.4.22251.1 6,956 5/10/2022
7.0.0-preview.3.22178.4 4,043 4/13/2022
7.0.0-preview.2.22153.2 2,406 3/14/2022
7.0.0-preview.1.22109.13 2,381 2/17/2022
6.0.36 78,844 5 months ago
6.0.35 62,624 6 months ago
6.0.33 592,185 8 months ago
6.0.32 79,810 9 months ago
6.0.31 94,379 5/28/2024
6.0.30 67,655 5/14/2024
6.0.29 220,304 4/9/2024
6.0.28 248,756 3/12/2024
6.0.27 191,030 2/13/2024
6.0.26 379,742 1/9/2024
6.0.25 453,610 11/14/2023
6.0.24 245,644 10/24/2023
6.0.23 198,680 10/10/2023
6.0.22 400,590 9/12/2023
6.0.21 489,238 8/8/2023
6.0.20 418,168 7/11/2023
6.0.19 282,722 6/22/2023
6.0.18 263,647 6/13/2023
6.0.16 1,292,088 4/11/2023
6.0.15 588,752 3/14/2023
6.0.14 749,591 2/14/2023
6.0.13 1,070,843 1/10/2023
6.0.12 743,002 12/13/2022
6.0.11 1,344,391 11/7/2022
6.0.10 2,028,259 10/11/2022
6.0.9 1,978,091 9/13/2022
6.0.8 2,520,600 8/9/2022
6.0.7 2,476,987 7/12/2022
6.0.6 1,604,232 6/14/2022
6.0.5 2,752,879 5/10/2022
6.0.4 1,973,478 4/11/2022
6.0.3 2,153,957 3/8/2022
6.0.2 2,555,427 2/8/2022
6.0.1 3,040,394 12/14/2021
6.0.0 5,837,213 11/8/2021
6.0.0-rc.2.21480.10 36,885 10/12/2021
6.0.0-rc.1.21452.15 35,137 9/14/2021
6.0.0-preview.7.21378.6 21,744 8/10/2021
6.0.0-preview.6.21355.2 11,328 7/14/2021
6.0.0-preview.5.21301.17 13,257 6/15/2021
6.0.0-preview.4.21253.5 6,870 5/24/2021
6.0.0-preview.3.21201.13 18,198 4/8/2021
6.0.0-preview.2.21154.6 5,101 3/11/2021 6.0.0-preview.2.21154.6 is deprecated because it is no longer maintained.
6.0.0-preview.1.21103.6 12,270 2/12/2021 6.0.0-preview.1.21103.6 is deprecated because it is no longer maintained.
5.0.17 938,449 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 137,494 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 310,046 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 208,672 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 400,075 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 503,120 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 1,146,811 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 1,273,414 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 1,260,755 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 1,168,066 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 1,559,343 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 1,219,374 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 1,459,896 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 1,291,488 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 1,079,119 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 957,969 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 1,035,100 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 1,855,425 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.17 23,605 10/13/2020 5.0.0-rc.2.20475.17 is deprecated because it is no longer maintained.
5.0.0-rc.1.20451.17 20,770 9/14/2020 5.0.0-rc.1.20451.17 is deprecated because it is no longer maintained.
5.0.0-preview.8.20414.8 18,901 8/25/2020 5.0.0-preview.8.20414.8 is deprecated because it is no longer maintained.
5.0.0-preview.7.20365.19 11,108 7/21/2020 5.0.0-preview.7.20365.19 is deprecated because it is no longer maintained.
5.0.0-preview.6.20312.15 8,818 6/25/2020 5.0.0-preview.6.20312.15 is deprecated because it is no longer maintained.
5.0.0-preview.5.20279.2 2,691 6/10/2020 5.0.0-preview.5.20279.2 is deprecated because it is no longer maintained.
5.0.0-preview.4.20257.10 3,800 5/18/2020 5.0.0-preview.4.20257.10 is deprecated because it is no longer maintained.
5.0.0-preview.3.20215.14 5,419 4/23/2020 5.0.0-preview.3.20215.14 is deprecated because it is no longer maintained.
5.0.0-preview.2.20167.3 4,452 4/2/2020 5.0.0-preview.2.20167.3 is deprecated because it is no longer maintained.
5.0.0-preview.1.20124.5 7,046 3/16/2020 5.0.0-preview.1.20124.5 is deprecated because it is no longer maintained.
3.1.32 232,320 12/13/2022
3.1.31 31,754 11/8/2022
3.1.30 36,030 10/11/2022
3.1.29 35,048 9/13/2022
3.1.28 53,282 8/9/2022
3.1.27 51,578 7/12/2022
3.1.26 41,301 6/14/2022
3.1.25 86,744 5/10/2022
3.1.24 72,548 4/11/2022
3.1.23 147,105 3/8/2022
3.1.22 365,774 12/14/2021
3.1.21 350,188 11/7/2021
3.1.20 226,134 10/11/2021
3.1.19 141,076 9/14/2021
3.1.18 308,966 8/10/2021
3.1.17 182,680 7/13/2021
3.1.16 220,338 6/8/2021
3.1.15 291,511 5/11/2021
3.1.14 273,316 4/6/2021
3.1.13 425,204 3/9/2021
3.1.12 524,428 2/9/2021
3.1.11 594,623 1/12/2021
3.1.10 1,196,939 11/9/2020
3.1.9 1,601,549 10/13/2020
3.1.8 2,980,067 9/8/2020
3.1.7 1,440,172 8/11/2020
3.1.6 1,485,165 7/14/2020
3.1.5 1,709,433 6/9/2020
3.1.4 1,206,158 5/12/2020
3.1.3 2,434,607 3/24/2020
3.1.2 1,960,517 2/18/2020
3.1.1 1,919,295 1/14/2020
3.1.0 2,339,296 12/3/2019
3.1.0-preview3.19555.2 12,531 11/13/2019 3.1.0-preview3.19555.2 is deprecated because it is no longer maintained.
3.1.0-preview2.19528.8 6,938 11/1/2019 3.1.0-preview2.19528.8 is deprecated because it is no longer maintained.
3.1.0-preview1.19508.20 9,804 10/15/2019 3.1.0-preview1.19508.20 is deprecated because it is no longer maintained.
3.0.3 58,458 2/18/2020 3.0.3 is deprecated because it is no longer maintained.
3.0.2 15,410 1/14/2020 3.0.2 is deprecated because it is no longer maintained.
3.0.0 2,118,714 9/23/2019 3.0.0 is deprecated because it is no longer maintained.
3.0.0-rc1.19457.4 22,221 9/16/2019 3.0.0-rc1.19457.4 is deprecated because it is no longer maintained.
3.0.0-preview9.19424.4 21,317 9/4/2019 3.0.0-preview9.19424.4 is deprecated because it is no longer maintained.
3.0.0-preview8.19405.7 14,357 8/13/2019 3.0.0-preview8.19405.7 is deprecated because it is no longer maintained.
3.0.0-preview7.19365.7 32,832 7/23/2019 3.0.0-preview7.19365.7 is deprecated because it is no longer maintained.
3.0.0-preview6.19307.2 16,588 6/12/2019 3.0.0-preview6.19307.2 is deprecated because it is no longer maintained.
3.0.0-preview5-19227-01 11,750 5/6/2019 3.0.0-preview5-19227-01 is deprecated because it is no longer maintained.
3.0.0-preview4-19216-03 3,664 4/18/2019 3.0.0-preview4-19216-03 is deprecated because it is no longer maintained.
3.0.0-preview3-19153-02 6,754 3/6/2019 3.0.0-preview3-19153-02 is deprecated because it is no longer maintained.
3.0.0-preview-19075-0444 2,640 1/29/2019 3.0.0-preview-19075-0444 is deprecated because it is no longer maintained.
3.0.0-preview-18579-0056 3,158 12/3/2018 3.0.0-preview-18579-0056 is deprecated because it is no longer maintained.
2.3.0 1,963 3 months ago
2.2.0 16,785,680 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 71,671 10/17/2018 2.2.0-preview3-35497 is deprecated because it is no longer maintained.
2.2.0-preview2-35157 38,138 9/12/2018 2.2.0-preview2-35157 is deprecated because it is no longer maintained.
2.2.0-preview1-35029 5,205 8/22/2018 2.2.0-preview1-35029 is deprecated because it is no longer maintained.
2.1.6 6,840,474 11/13/2018
2.1.3 7,962,947 8/21/2018
2.1.2 3,407,199 7/10/2018
2.1.1 10,249,846 6/18/2018
2.1.0 3,738,330 5/29/2018
2.1.0-rc1-final 26,229 5/6/2018 2.1.0-rc1-final is deprecated because it is no longer maintained.
2.1.0-preview2-final 26,233 4/10/2018 2.1.0-preview2-final is deprecated because it is no longer maintained.
2.1.0-preview1-final 42,460 2/26/2018 2.1.0-preview1-final is deprecated because it is no longer maintained.
2.0.4 2,410,554 7/10/2018 2.0.4 is deprecated because it is no longer maintained.
2.0.3 2,400,646 5/7/2018 2.0.3 is deprecated because it is no longer maintained.
2.0.2 3,637,784 3/13/2018 2.0.2 is deprecated because it is no longer maintained.
2.0.1 5,543,233 11/14/2017 2.0.1 is deprecated because it is no longer maintained.
2.0.0 6,812,710 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 56,401 6/27/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 28,158 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.1.6 20,282 7/10/2018 1.1.6 is deprecated because it is no longer maintained.
1.1.5 23,874 12/12/2017 1.1.5 is deprecated because it is no longer maintained.
1.1.4 7,797 11/14/2017 1.1.4 is deprecated because it is no longer maintained.
1.1.3 25,938 9/20/2017 1.1.3 is deprecated because it is no longer maintained.
1.1.2 318,810 5/9/2017 1.1.2 is deprecated because it is no longer maintained.
1.1.1 197,415 3/6/2017 1.1.1 is deprecated because it is no longer maintained.
1.1.0 258,898 11/16/2016 1.1.0 is deprecated because it is no longer maintained.
1.1.0-preview1-final 9,648 10/24/2016 1.1.0-preview1-final is deprecated because it is no longer maintained.
1.0.6 4,192 7/10/2018 1.0.6 is deprecated because it is no longer maintained.
1.0.5 4,981 11/14/2017 1.0.5 is deprecated because it is no longer maintained.
1.0.4 7,601 9/20/2017 1.0.4 is deprecated because it is no longer maintained.
1.0.3 6,873 5/9/2017 1.0.3 is deprecated because it is no longer maintained.
1.0.2 219,352 3/6/2017 1.0.2 is deprecated because it is no longer maintained.
1.0.1 27,809 12/12/2016 1.0.1 is deprecated because it is no longer maintained.
1.0.0 345,504 6/27/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-rc2-final 36,684 5/16/2016 1.0.0-rc2-final is deprecated because it is no longer maintained.