Asp MVC: How get roles from ApplicationUser

14,979

You can get user and assigned roles by using UserManager.

var userManager = HttpContext.GetOwinContext().GetUserManager<ApplicationUserManager>();

and then you can get your user like you already did, and also you can get roles for particular user by calling GetRoles method

userManager.GetRoles(userId);
Share:
14,979
Tom
Author by

Tom

Updated on June 09, 2022

Comments

  • Tom
    Tom almost 2 years

    In ASP.NET MVC 5, in a controller, I have take the user that has make the request with:

    ApplicationUser user = System.Web.HttpContext.Current.GetOwinContext().GetUserManager<ApplicationUserManager>().FindById(System.Web.HttpContext.Current.User.Identity.GetUserId());
    

    With the ApplicationUser instance, how can i get all the Roles of the user?