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
System_CAPS_pubmethod UserStore<TUser>()

Initializes a new instance of the UserStore<TUser> class which uses a new instance of a default EntityyDbContext.

System_CAPS_pubmethod 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

ASP.NET Identity

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

See Also

ASP.NET Identity

Return to top