Создайте свою пользовательскую модель (ApplicationUser), затем присуще IdentityUser
добавьте свою вновь созданную пользовательскую модель в качестве аргумента генерации в IdentityDbcontext
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
: base(options)
{
}
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
base.OnConfiguring(optionsBuilder);
}
}
services.AddIdentity<ApplicationUser, IdentityRole>(options => options.SignIn.RequireConfirmedAccount = true)
.AddEntityFrameworkStores<ApplicationDbContext>()
.AddDefaultTokenProviders();
Ваша пользовательская модель должна выглядеть следующим образом.
public class ApplicationUser : IdentityUser
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string Address { get; set; }
public string State { get; set; }
public string City { get; set; }
public string Website { get; set; }
public bool IsActive { get; set; }
public string PhotoUrl { get; set; }
}
Последнее, что вы должны создать и запустить новую миграцию для обновления вашей базы данных
Примечание. Если в вашем проекте есть несколько DbContext, вам нужно указать DbContext для использования при создании. миграция
например, здесь у меня есть два разных DbContext
dotnet ef migrations add {migration-name} -c TenantDbContext -s ../AspNetCorePropertyPro.Api/AspNetCorePropertyPro.Api.csproj to run the migration against a client.
dotnet ef database update -c GlobalDbContext -s ../AspNetCorePropertyPro.Api/AspNetCorePropertyPro.Api.csproj to run migration against the global context
dotnet ef migrations add {tenant-migration-name} -o Migrations/Tenants -c TenantDbContext -s ../AspNetCorePropertyPro.Api/AspNetCorePropertyPro.Api.csproj
dotnet ef database update -c GlobalDbContext -s ../AspNetCorePropertyPro.Api/AspNetCorePropertyPro.Api.csproj to run migration against the global context
-o = output directory.
-c = dbcontext to perform the migration if more than one exists.
-s = the path to the startup project.