UserStore<TUser> Constructor
Initializes a new instance of the UserStore<TUser> class.
Namespace: Microsoft.AspNet.Identity.EntityFramework
Assembly: Microsoft.AspNet.Identity.EntityFramework (in Microsoft.AspNet.Identity.EntityFramework.dll)
Overload List
Name | Description | |
---|---|---|
![]() |
UserStore<TUser>() | Initializes a new instance of the UserStore<TUser> class which uses a new instance of a default EntityyDbContext. |
![]() |
UserStore<TUser>(DbContext) | Initializes a new instance of the UserStore<TUser> class. |
See Also
UserStore<TUser> Class
Microsoft.AspNet.Identity.EntityFramework Namespace
ASP.NET Identity
Return to top
UserStore<TUser> Constructor ()
Initializes a new instance of the UserStore<TUser> class which uses a new instance of a default EntityyDbContext.
Syntax
public UserStore()
public:
UserStore()
new : unit -> UserStore
Public Sub New
See Also
Return to top
UserStore<TUser> Constructor (DbContext)
Initializes a new instance of the UserStore<TUser> class.
Syntax
public UserStore(
DbContext context
)
public:
UserStore(
DbContext^ context
)
new :
context:DbContext -> UserStore
Public Sub New (
context As DbContext
)
Parameters
context
Type: System.Data.Entity.DbContextThe entity context.
See Also
Return to top