Security Framework

General information

"Security Framework" refers to frameworks that are designed to enable secure user identification which is needed if you want to include access control features, such as registration, login authentication, and authorization.

Identity Framework

The ASP.NET Core Identity Framework builds upon the Entity Framework (described in the previous article) by providing classes, methods, etc that enable secure user identification, so that you can use the access control features mentioned above in your .NET applications.

Installation

  1. Right-click on the project (if it is a big project that inlcudes many sub-projects, right-click on the DataAccess project)

  2. Select "Manage NuGet Packages"

  3. Search for "Microsoft.AspNet.Identity.EntityFramework" (Browse tab)

  4. Click the Download icon next to "Microsoft.AspNet.Identity.EntityFramework"

Video

Last updated