Search code examples
asp.netasp.net-identity

Add role in ASP.NET Identity


How can I add a Role in the new ASP.NET Identity system (1.0)? There is a UserStore class but no RoleStore class.

I can't find any documentation on this issue.


Solution

  • RoleManager = new RoleManager<IdentityRole>(
                      new RoleStore<IdentityRole>(new MyDbContext()));
    var roleresult = RoleManager.Create(new IdentityRole(roleName));