ASP.NET
Identity Assemblies
Microsoft.AspNet.Identity.EntityFramework
There
are three important assemblies used for creating Identity. These assemblies
help the programmer in developing the Identity without writing thousands of
lines of code in ASP.NET MVC application. These important assemblies are:
- Microsoft.Asp.Net.Identiy.Core
- Microsoft.Asp.Net.Identiy.EntityFramework
- Microsoft.Asp.Net.Identiy.Owin
Microsoft.AspNet.Identity.EntityFramework
This package has the Entity Framework implementation of ASP.NET
Identity which will persist the ASP.NET Identity data and schema to SQL Server.
Microsoft.AspNet.Identity.Core
This package has the core interfaces for ASP.NET Identity. This
package can be used to write an implementation for ASP.NET Identity that
targets different persistence stores such as Azure Table Storage, NoSQL
databases etc.
Microsoft.AspNet.Identity.OWIN
This package contains functionality that is used to plug in OWIN
authentication with ASP.NET Identity in ASP.NET applications. This is used when
you add sign in functionality to your application and call into OWIN Cookie
Authentication middleware to generate a cookie.
0 Comments