mvc 5 check user role

How in mvc 5 I can found out role of logged user?

I made the user by this code

    private bool AddUserAndRole()
    {
        IdentityResult ir;
        var rm = new RoleManager<IdentityRole>
            (new RoleStore<IdentityRole>(new ApplicationDbContext()));
        ir = rm.Create(new IdentityRole("admin"));

        var user = new ApplicationUser() { UserName = "Admin" };
        var result = UserManager.Create(user, "somepassword");
        UserManager.AddToRole(user.Id, "admin");

        return true;
     }

After I loggin on site by that user. How in controller I can check if that user have role == "admin" or not? I found only one way which doesnt look works fast.

        var rm = new RoleManager<IdentityRole>(new RoleStore<IdentityRole>(new ApplicationDbContext()));
        var role = rm.FindByName("admin");
        bool result = User.IsInRole(role.Name); //true

Do we have other ways?


bool result = User.IsInRole("admin") 

Much easier. :)

链接地址: http://www.djcxy.com/p/20530.html

上一篇: 带有AuthorizeAttribute的ASP.NET Web API授权

下一篇: mvc 5检查用户角色