当我尝试从中获取角色时RoleManager
,我得到了非常奇怪的对象列表的列表,
我如何检索我的角色:
public AppRoleManager RoleManager
{
get
{
return HttpContext.Current.GetOwinContext().GetUserManager<AppRoleManager>();
}
}
public IEnumerable<AppRole> GetRoles()
{
return RoleManager.Roles.ToList();
}
我以前没有遇到过这个问题,但我想这可能与我将整个带有数据库的 Web 应用程序移动到 Azure 有关吗?谁能指出如何解决这个问题?
所以我的问题是,当我加载作为模型传递的列表的页面时,它会抛出异常错误而没有任何异常详细信息。只是服务器错误抛出。
注意:以同样的方式让我的用户UserManager
像魅力一样工作。