作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 ASP.NET MVC 5 中,在一个 Controller 中,我让发出请求的用户使用:
ApplicationUser user = System.Web.HttpContext.Current.GetOwinContext().GetUserManager<ApplicationUserManager>().FindById(System.Web.HttpContext.Current.User.Identity.GetUserId());
对于 ApplicationUser 实例,如何获取用户的所有角色?
最佳答案
您可以使用 UserManager 获取用户和分配的角色。
var userManager = HttpContext.GetOwinContext().GetUserManager<ApplicationUserManager>();
然后您可以像以前一样获取您的用户,也可以通过调用 GetRoles 方法获取特定用户的角色
userManager.GetRoles(userId);
关于c# - ASP MVC : How get roles from ApplicationUser,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34975075/
我是一名优秀的程序员,十分优秀!