ASP.net core 2.0.1 中 asp.net identity 2.0.1 的基本使用(一)—启用用户管理
一、修改和启用默认的用户账户管理和角色管理
在Data目录中添加ApplicationRole.cs类文件,如下
namespace xxxx.Models
{
//将应用程序用户的属性添加到应用程序
public class ApplicationRole : IdentityRole
{
}
}
二、修改startup.cs文件。(此步不要操作,会发生异常。20180222)
修改
public void ConfigureServices(IServiceCollection services)中的services.AddIdentity(约47行),
默认内容为services.AddIdentity<ApplicationUser, IdentityRole>()
改为services.AddIdentity<ApplicationUser, ApplicationRole>()。
三、更新数据库。
在VS的程序包管理器控制台中输入Update-Database命令。
PM> Update-Database //
更新数据库