ASP.NET MVC Identity 添加角色
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ASP.NET MVC Identity 添加角色相关的知识,希望对你有一定的参考价值。
using Microsoft.AspNet.Identity;
public ActionResult AddRole(String name)
{
using (var roleManager = new RoleManager<IdentityRole>(
new RoleStore<IdentityRole>(new IdentityDbContext())))
{
if (!roleManager.RoleExists(name))
{
roleManager.Create(new IdentityRole(name));
}
}
}
以上是关于ASP.NET MVC Identity 添加角色的主要内容,如果未能解决你的问题,请参考以下文章
在 Asp.net Identity MVC 5 中创建角色
Asp.Net MVC Identity 2.2.1 使用技巧
Asp.Net MVC Identity 2.2.1 使用技巧
ASP.NET MVC 5 中的简单角色管理器和授权,无需使用 Identity(CustomRoleProvider)