Microsoft.AspNet.Identity.EntityFramework Namespace

 

The Microsoft.AspNet.Identity.EntityFramework namespace contains Entity Framework implementations of identity types.

Classes

Class Description
System_CAPS_pubclass IdentityDbContext

Represents a class that uses the default entity types for ASP.NET Identity Users, Roles, Claims, Logins. Use this overload to add your own entity types.

System_CAPS_pubclass IdentityDbContext<TUser>

Represents a class which uses a custom user entity with a string primary key.

System_CAPS_pubclass IdentityDbContext<TUser, TRole, TKey, TUserLogin, TUserRole, TUserClaim>

Represents a generic IdentityDbContext base that can be customized with entity types that extend from the base IdentityUserXXX types.

System_CAPS_pubclass IdentityRole

Represents a Role entity.

System_CAPS_pubclass IdentityRole<TKey, TUserRole>

Represents a role entity

System_CAPS_pubclass IdentityUser

Represents a default EntityFramework IUser implementation.

System_CAPS_pubclass IdentityUser<TKey, TLogin, TRole, TClaim>

Default EntityFramework IUser implementation

System_CAPS_pubclass IdentityUserClaim

EntityType that represents one specific user claim

System_CAPS_pubclass IdentityUserClaim<TKey>

Specifies an EntityType that represents one specific user claim.

System_CAPS_pubclass IdentityUserLogin

Entity type for a user's login (i.e. facebook, google)

System_CAPS_pubclass IdentityUserLogin<TKey>

Represents entity type for a user's login.

System_CAPS_pubclass IdentityUserRole

EntityType that represents a user belonging to a role

System_CAPS_pubclass IdentityUserRole<TKey>

Represents an EntityType user belonging to a role.

System_CAPS_pubclass RoleStore<TRole>

Represents an Entity Framework implementation of a role store.

System_CAPS_pubclass RoleStore<TRole, TKey, TUserRole>

Represents an Entity Framework implementation of a role store.

System_CAPS_pubclass UserStore<TUser>

Represents an Entity Framework implementation of a store that supports IUserStore, IUserLoginStore, IUserClaimStore and IUserRoleStore.

System_CAPS_pubclass UserStore<TUser, TRole, TKey, TUserLogin, TUserRole, TUserClaim>

Represents an Entity Framework implementation of a user store that supports IUserStore, IUserLoginStore, IUserClaimStore and IUserRoleStore.

Return to top