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.
RoleManager = new RoleManager<IdentityRole>(
new RoleStore<IdentityRole>(new MyDbContext()));
var roleresult = RoleManager.Create(new IdentityRole(roleName));