Microsoft.AspNet.Identity.EntityFramework Namespace
The Microsoft.AspNet.Identity.EntityFramework namespace contains Entity Framework implementations of identity types.
| Class | Description | |
|---|---|---|
![]() | 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. |
![]() | IdentityDbContext<'TUser> | Represents a class which uses a custom user entity with a string primary key. |
![]() | 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. |
![]() | IdentityRole | Represents a Role entity. |
![]() | IdentityRole<'TKey, 'TUserRole> | Represents a role entity |
![]() | IdentityUser | Represents a default EntityFramework IUser implementation. |
![]() | IdentityUser<'TKey, 'TLogin, 'TRole, 'TClaim> | Default EntityFramework IUser implementation |
![]() | IdentityUserClaim | EntityType that represents one specific user claim |
![]() | IdentityUserClaim<'TKey> | Specifies an EntityType that represents one specific user claim. |
![]() | IdentityUserLogin | Entity type for a user's login (i.e. facebook, google) |
![]() | IdentityUserLogin<'TKey> | Represents entity type for a user's login. |
![]() | IdentityUserRole | EntityType that represents a user belonging to a role |
![]() | IdentityUserRole<'TKey> | Represents an EntityType user belonging to a role. |
![]() | RoleStore<'TRole> | Represents an Entity Framework implementation of a role store. |
![]() | RoleStore<'TRole, 'TKey, 'TUserRole> | Represents an Entity Framework implementation of a role store. |
![]() | UserStore<'TUser> | Represents an Entity Framework implementation of a store that supports IUserStore, IUserLoginStore, IUserClaimStore and IUserRoleStore. |
![]() | UserStore<'TUser, 'TRole, 'TKey, 'TUserLogin, 'TUserRole, 'TUserClaim> | Represents an Entity Framework implementation of a user store that supports IUserStore, IUserLoginStore, IUserClaimStore and IUserRoleStore. |
