如何从ASP.NET Identity ApplicationGroupRoles表中获取角色



我可以从早期版本的ASP.NET Identity中的AspNetUserRoles表中检索用户的所有角色,如下所示:

ApplicationUser user = UserManager.FindByName(model.UserName);
string userId = user != null ? user.Id : null;
var roles = userId != null ? UserManager.GetRoles(userId) : null;
if (roles != null)
{
    foreach (var item in roles)
    {
        //Assign user roles
        UserManager.AddToRole(userId, item);
    }
}

但是,由于角色是通过ApplicationGroupRolesApplication用户组表分配给用户的,因此此UserManager.GetRoles(userId)方法不起作用,因为它只从AspNetUserRoles表中检索角色。那么,如何管理检索给定用户的角色,即先查看ApplicationUserGroups,然后查看ApplicationGroupRoles者是使用sql命令检索它们的唯一方法?如有任何帮助,我们将不胜感激。

虽然我发布了另一种查找角色的方法,但您的代码很好,您在表中输入了任何角色吗

AspNetRoles

并在表中创建了用户和角色之间的关系

AspNetUserRoles

要查找特定用户的所有角色,可以使用以下代码

    RoleBasedSecurity.Models.ApplicationDbContext context = new ApplicationDbContext();
    ApplicationUser au = context.Users.First(u => u.UserName == "admin@admin.com");
    foreach (IdentityUserRole role in au.Roles)
    {
        string name = role.RoleId;
        string RoleName = context.Roles.First(r => r.Id == role.RoleId).Name;
    }

创建角色的代码在cofiguration.cs中的受保护的覆盖无效种子(RoleBasedSecurity.Models.ApplicationDbContext上下文)中写入这些行

    if (!context.Roles.Any(r => r.Name == "User"))
    {
        var store = new RoleStore<IdentityRole>(context);
        var manager = new RoleManager<IdentityRole>(store);
        var role = new IdentityRole { Name = "User" };
        manager.Create(role);
    }

将用户附加到角色的代码在cofiguration.cs中的受保护的覆盖无效种子(RoleBasedSecurity.Models.ApplicationDbContext上下文)中写入这些行

    if (!context.Users.Any(u => u.UserName == "admin@admin.com"))
    {
        var store = new UserStore<ApplicationUser>(context);
        var manager = new UserManager<ApplicationUser>(store);
        var user = new ApplicationUser { UserName = "admin@admin.com", Email = "admin@admin.com" };
        manager.Create(user, "password");
        manager.AddToRole(user.Id, "Admin");
    }

最后,我使用以下语句来获得相关值:

ApplicationGroupManager gm = new ApplicationGroupManager();
string roleName = RoleManager.FindById("").Name; //Returns Role Name by using Role Id 
var userGroupRoles = gm.GetUserGroupRoles(""); //Returns Group Id and Role Id by User Id var 
groupRoles = gm.GetGroupRoles(""); //Returns Group Roles by using Group Id
string[] groupRoleNames = groupRoles.Select(p => p.Name).ToArray(); //Assing Group Role Names to a string array


//Returns Group Id and Role Id by using User Id parameter
var userGroupRoles = groupManager.GetUserGroupRoles(""); 
foreach (var role in userGroupRoles)
{
    string roleName = RoleManager.FindById(role.ApplicationRoleId).Name;
    UserManager.AddToRole(user.Id, roleName);
}


//Sets the uıser's group id
var defaultGroup = "";
groupManager.SetUserGroups(newUser.Id, new string[] { defaultGroup });

通过使用它们,现在我可以轻松地检索所需的必要值。非常感谢@rashfmnb。

相关内容

  • 没有找到相关文章

最新更新