IdentityUser具有以下字段:Id、用户名、密码、电子邮件和电话号码。
由于显示名称可能与用户名不同,我们会添加Name属性,另外,假设我们想向用户发送生日祝福,我们应该如何扩展他们的出生日期呢?
为此,需要添加一个名为WebAppUser.cs的文件到Data文件夹中:
using Microsoft.AspNetCore.Identity;
namespace AuthSample.Data;
public class WebAppUser : IdentityUser {
[PersonalData]
public string? Name { get; set; }
[PersonalData]
public DateTime DOB { get; set; }
}如上所示,WebAppUser.cs派生自IdentityUser,并扩展两个属性。
在Program.cs,我们需要修改服务注册以使用新的WebAppUser:
builder.Services.AddDefaultIdentity<WebAppUser>
我们还需要更改DbContext,使用WebAppUser:
public class ApplicationDbContext : IdentityDbContext<WebAppUser, IdentityRole, string>您还需要将using语句添加到Microsoft.AspNetCore.Identity中。这是第一步。我们现在需要更新数据库:
dotnet ef migrations add CustomUserData
dotnet ef database update一旦使用自定义属性扩展了IdentityUser,就可以在在http://ASP.NET Core Identity U的用户配置文件中使用它。 自定义Identity视图(views)