web-dev-qa-db-ja.com

ASP.NET MVC 5でロール名を持つユーザーをリストする方法

ASP.NET MVC 5 Webサイトのデフォルトのプロジェクトテンプレートがあり、ロール名(IDではなく)を持つすべてのユーザーをリストしようとしています。

クエリは次のとおりです。

db.Users.Include(u => u.Roles).ToList()

次に、次のようなロール名を出力します。

@string.Join(", ", user.Roles.Select(r => r.RoleId))

問題は、RoleIdおよびその他のプロパティが格納されているRoleクラスではなく、Nameにしか到達できないことです。

別のselectを実行してすべてのロールを取得し、それをルックアップとして使用できます。または、クエリに直接結合を記述しますか?ユーザーとロールを一緒にバインドしているIdentityUserRoleエンティティを持つテーブルにアクセスできないため、どうすればよいかわかりません。

問題の根本は、IdentityUserRoleRoleのみを含むRoleIdUserIdではなく)のRolesコレクションであるという事実のようです。

public class IdentityUserRole<TKey> {
    public virtual TKey RoleId { get; set; }
    public virtual TKey UserId { get; set; }
}

EFでN対Nの関係を行いたい場合は、Rolesのコレクションを直接配置し、OnModelCreatingをオーバーライドして関係を指定する必要があると考えました。このアプローチは、オブジェクトを次々にブラウズするのを複雑にするようです。

なぜ彼らはIdentityUserRoleを追加のエンティティとして含めることにしたのですか?関係に追加のデータを追加できるようにするには?ユーザーからロールにナビゲートできないという犠牲を払っていますか?

11
NightElfik

私のやり方は次のとおりです。

using (var userManager = new UserManager<ApplicationUser>(new UserStore<ApplicationUser>(new ApplicationContext()))
{
    var rolesForUser = await userManager.GetRolesAsync(userId);

   // rolesForUser now has a list role classes.
}

IDチームは2つのマネージャーを作成しました:RoleManagerはロール(ユーザーロールではありません)をソートするため、_UserManagerは基本的にすべての認証に関してです。 SignInManagerもありますが、必要ではありません。

UserManagerはユーザーを見つけ、ユーザーを作成し、ユーザーを削除し、電子メールを送信します...リストが続きます。

したがって、私のActionは次のようになります。

    public async Task<ActionResult> GetRolesForUser(string userId)
    {
        using (
            var userManager =
                new UserManager<ApplicationUser>(new UserStore<ApplicationUser>(new ApplicationDbContext())))
        {
            var rolesForUser = await userManager.GetRolesAsync(userId);

            return this.View(rolesForUser);
        }
    }

生のSQLを実行するには、次のようにします。

クエリの出力に基づいて、Entity Frameworkがマップできるクラスを作成します。

public class UserWithRole
{
    public string UserName {get;set;} // You can alias the SQL output to give these better names
    public string Name {get;set;}
}

using (var context = new DbContext())
{
    var sql = @"
                SELECT AspNetUsers.UserName, AspNetRoles.Name 
                FROM AspNetUsers 
                LEFT JOIN AspNetUserRoles ON  AspNetUserRoles.UserId = AspNetUsers.Id 
                LEFT JOIN AspNetRoles ON AspNetRoles.Id = AspNetUserRoles.RoleId
                WHERE AspNetUsers.Id = @Id";
    var idParam = new SqlParameter("Id", theUserId);

    var result = context.Database.ExecuteQuery<UserWithRole>(sql, idParam);
}

ものすごく単純!

SQL戻り列のエイリアスを作成する場合:

SELECT AspNetUSers.UserName, AspNetRoles.Name As RoleName

DTOクラスは次のようになります。

public class UserWithRole
{
    public string UserName {get;set;}
    public string RoleName {get;set;}
}

これは明らかにずっときれいです。

14

これは、MVC 5、Identity 2.0、および John Atten によって記述されるカスタムユーザーとロールで行う方法です。

コントローラー内

public virtual ActionResult ListUser()
    {            
        var users = UserManager.Users;
        var roles = new List<string>();
        foreach (var user in users)
        {
            string str = "";
            foreach (var role in UserManager.GetRoles(user.Id))
            {
                str = (str == "") ? role.ToString() : str + " - " + role.ToString();
            }
            roles.Add(str);
        }
        var model = new ListUserViewModel() {
            users = users.ToList(),
            roles = roles.ToList()
        };
        return View(model);
    }

ViewModelで

public class ListUserViewModel
{
    public IList<YourAppNamespace.Models.ApplicationUser> users { get; set; }
    public IList<string> roles { get; set; }
}

そして私の見解では

@{
    int i = 0;
}
@foreach (var item in Model.users)
{   
    @Html.DisplayFor(modelItem =>  item.Name)
    [... Use all the properties and formating you want ... and ] 
    @Model.roles[i]
    i++;
}
3
remi

C#アプリケーションから動的SQLを実行するのは悪いテクニックだと思います。以下は私の方法です:

モデル:

  public class ApplicationRole : IdentityRole
  {
    public ApplicationRole() : base() { }
    public ApplicationRole(string name) : base(name) { }
    public string Description { get; set; }

  }

コントローラ:

using Microsoft.AspNet.Identity;
using Microsoft.AspNet.Identity.Owin;
using Microsoft.AspNet.Identity.EntityFramework;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
using System.Web;
using System.Web.Mvc;
using System.Collections.Generic;

//Example for Details.
if (id == null)
  {
    return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
  }
  var role = await RoleManager.FindByIdAsync(id);
  // Get the list of Users in this Role
  var users = new List<ApplicationUser>();

  // Get the list of Users in this Role
  foreach (var user in UserManager.Users.ToList())
  {
    if (await UserManager.IsInRoleAsync(user.Id, role.Name))
    {
      users.Add(user);
    }
  }

  ViewBag.Users = users;
  ViewBag.UserCount = users.Count();
  return View(role);

表示(ApplicationRoleを使用)

    <div>
        <h4>Roles.</h4>
        <hr />
        <dl class="dl-horizontal">
            <dt>
                @Html.DisplayNameFor(model => model.Name)
            </dt>
            <dd>
                @Html.DisplayFor(model => model.Name)
            </dd>
        </dl>
        <dl class="dl-horizontal">
            <dt>
                @Html.DisplayNameFor(model => model.Description)
            </dt>
            <dd>
                @Html.DisplayFor(model => model.Description)
            </dd>
        </dl>
    </div>
    <h4>List of users in this role</h4>
    @if (ViewBag.UserCount == 0)
{
        <hr />
        <p>No users found in this role.</p>
}
    <table class="table">
        @foreach (var item in ViewBag.Users)
    {
            <tr>
                <td>
                    @item.UserName
                </td>
            </tr>
    }
    </table>
0
Danny Rancher

@Callum Liningtonの回答に感謝します。私のような初心者のために、少しはっきりさせてください。以下に、ロールを持つユーザーのリストを取得する手順を示します。

1-「UsersWithRoles」という名前のビューモデルを、次のようにいくつかのプロパティとともに作成します。

enter image description here

2-「RolesController」というコントローラを作成し、次のコードを追加します。

        public ActionResult Index()
    {
        using (var context = new ApplicationDbContext())
        {
            var sql = @"
            SELECT AspNetUsers.UserName, AspNetRoles.Name As Role
            FROM AspNetUsers 
            LEFT JOIN AspNetUserRoles ON  AspNetUserRoles.UserId = AspNetUsers.Id 
            LEFT JOIN AspNetRoles ON AspNetRoles.Id = AspNetUserRoles.RoleId";
            //WHERE AspNetUsers.Id = @Id";
            //var idParam = new SqlParameter("Id", theUserId);

            var result = context.Database.SqlQuery<UserWithRoles>(sql).ToList();
            return View(result);
        }

    }

rolesControllerは次のようになります。

enter image description here

3- [インデックス]ページを[ロール]フォルダーに追加し、次のコードを追加します。

@model IEnumerable<MVC_Auth.ViewModels.UserWithRoles>
<div class="row">
    <h4>Users</h4>
    <table class="table table-hover table-responsive table-striped table-bordered">
        <th>User Name</th>
        <th>Role</th>
        @foreach (var user in Model)
        {
            <tr>
                <td>@user.UserName</td>
                <td>@user.Role</td>
            </tr>
        }
    </table>
</div>

結果はこちら

enter image description here

ありがとう。

0
user2662006
using System.Linq;
using System.Data;
using System.Data.Entity;

            var db = new ApplicationDbContext();
            var Users = db.Users.Include(u => u.Roles);

            foreach (var item in Users)
            {
                string UserName = item.UserName;
                string Roles = string.Join(",", item.Roles.Select(r=>r.RoleId).ToList());
            }
0