.net core 1.0 中的asp.net identity 基本使用(二)

时间:2023-03-08 17:51:35
.net core 1.0 中的asp.net identity 基本使用(二)

一、重写(覆盖)身份验证数据类型

1、修改Models目录中的ApplicationUser.cs类文件,如下

namespace xxxx.Models
{
//将应用程序用户的属性添加到应用程序
public class ApplicationUser : IdentityUser<Guid>
{
}
}

2、在Models目录中添加ApplicationRole.cs类文件,如下

namespace xxxx.Models
{
//将应用程序角色的属性添加到应用程序
public class ApplicationRole : IdentityRole<Guid>
{
}
}

3、修改数据连接,打开Data目录下的ApplicationDbContext.cs文件,修改 public class ApplicationDbContext : IdentityDbContext<ApplicationUser>(约11行)为public class ApplicationDbContext : IdentityDbContext<ApplicationUser, ApplicationRole,Guid>。

4、打开startup.cs文件,找到public void ConfigureServices(IServiceCollection services)中的services.AddIdentity(约56行),改为如下:

            //原始自动生成的代码
//services.AddIdentity<ApplicationUser, IdentityRole>()
// .AddEntityFrameworkStores<ApplicationDbContext>()
// .AddDefaultTokenProviders(); services.AddIdentity<ApplicationUser, ApplicationRole>()
.AddEntityFrameworkStores<ApplicationDbContext>()
.AddDefaultTokenProviders();

至此配置完毕。