Share via


IdentityDbContext<TUser> Constructors

Definition

Overloads

IdentityDbContext<TUser>()

Initializes a new instance of the IdentityDbContext class.

IdentityDbContext<TUser>(DbContextOptions)

Initializes a new instance of IdentityDbContext.

IdentityDbContext<TUser>()

Source:
IdentityDbContext.cs
Source:
IdentityDbContext.cs
Source:
IdentityDbContext.cs
Source:
IdentityDbContext.cs
Source:
IdentityDbContext.cs
Source:
IdentityDbContext.cs
Source:
IdentityDbContext.cs
Source:
IdentityDbContext.cs

Initializes a new instance of the IdentityDbContext class.

protected:
 IdentityDbContext();
protected IdentityDbContext ();
Protected Sub New ()

Applies to

IdentityDbContext<TUser>(DbContextOptions)

Source:
IdentityDbContext.cs
Source:
IdentityDbContext.cs
Source:
IdentityDbContext.cs
Source:
IdentityDbContext.cs
Source:
IdentityDbContext.cs
Source:
IdentityDbContext.cs
Source:
IdentityDbContext.cs
Source:
IdentityDbContext.cs

Initializes a new instance of IdentityDbContext.

public:
 IdentityDbContext(Microsoft::EntityFrameworkCore::DbContextOptions ^ options);
public IdentityDbContext (Microsoft.EntityFrameworkCore.DbContextOptions options);
new Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityDbContext<'User (requires 'User :> Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityUser)> : Microsoft.EntityFrameworkCore.DbContextOptions -> Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityDbContext<'User (requires 'User :> Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityUser)>
new Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityDbContext<'User (requires 'User :> Microsoft.AspNetCore.Identity.IdentityUser)> : Microsoft.EntityFrameworkCore.DbContextOptions -> Microsoft.AspNetCore.Identity.EntityFrameworkCore.IdentityDbContext<'User (requires 'User :> Microsoft.AspNetCore.Identity.IdentityUser)>
Public Sub New (options As DbContextOptions)

Parameters

options
DbContextOptions

The options to be used by a DbContext.

Applies to