我想獲得只是在角色用戶在mvc中,我試過了一切。如您所知AspNetUserRoles
是一個映射表(多對多),所以它不是在EDMX中生成的(按設計,它沒有主鍵)。我們也不能使用角色表(?)。請考慮我的模型。如何讓用戶在mvc中的角色5
這是我最後一次嘗試:
public async Task<ActionResult> Roles()
{
var list = context.Users.Include(u => u.Roles);
var user = new List<ApplicationUser>();
foreach(var u in list)
{
if(u.Roles!= null)
{
user.Add(u);
}
}
return View(user);
}
,這裏是我的觀點:
@model IEnumerable<Site.Models.ApplicationUser>
@{
Layout = null;
}
<h2>List of users with Roles:</h2>
<table class="table">
<tr>
<th>
@Html.DisplayNameFor(model => model.UserName)
</th>
<th>
@Html.DisplayNameFor(model => model.Email)
</th>
<th>
@Html.DisplayNameFor(model => model.Roles)
</th>
</tr>
@foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.UserName)
</td>
<td>
@Html.DisplayFor(modelItem => item.Email)
</td>
<th>
@Html.DisplayFor(modelItem => item.Roles)
</th>
<td>
@Html.ActionLink("Edit", "Edit", new { id = item.Id }) |
@Html.ActionLink("Details", "Details", new { id = item.Id }) |
@Html.ActionLink("Delete", "Delete", new { id = item.Id })
</td>
</tr>
}
</table>
那麼是什麼問題?你沒有獲得任何角色的用戶? – Marius
我想要獲取角色用戶,但此代碼獲取所有用戶。 – V47
如果將if(u.Roles!= null)'更改爲'if(u.Roles.Any())',該怎麼辦? – Hendry