我目前正在处理一段返回异常的代码:
控制器:

 public ActionResult Edit (string userId)
    {
        AspNetUserRoles personRole;
        if (userId == null)
        {
            return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
        }

        ///error happens here during execution of  Find() on table
        personRole = tbls.AspNetUserRoles.Find(userId);


        if (personRole == null)
        {
            return HttpNotFound();
        }
        return View(personRole);
    }

视图(我通过它传递字符串ID):
@model IEnumerable<WebApplication1.Models.MyViewModel>



<p>
    @Html.ActionLink("Create New", "Create")
</p>
<table class="table">
    <tr>

        <th>
            @Html.DisplayNameFor(model => model.Id)
        </th>

        <th>
            @Html.DisplayNameFor(model => model.Name)
        </th>

        <th>
            @Html.DisplayNameFor(model => model.RoleId)
        </th>
        <th></th>
    </tr>

@foreach (var item in Model) {
    <tr>

        <td>
            @Html.DisplayFor(modelItem => item.Id)
        </td>

        <td>
            @Html.DisplayFor(modelItem => item.Name)
        </td>
        <td>
            @Html.DisplayFor(modelItem => item.RoleId)
        </td>
        <td>
            @*I added null, so for the sake of routing*@
            @Html.ActionLink("Edit", "Edit", "Home", new { id = item.Id }, null) |



            @Html.ActionLink("Details", "Details", new { id = item.Id }) |
            @Html.ActionLink("Delete", "Delete", new { id = item.Id })
        </td>
    </tr>
}

</table>

模型:
  public class MyViewModel
    {

        public string Id { get; set; }
        public string Name { get; set; }
        public string RoleId { get; set; }
    }
 public partial class AspNetUserRoles
    {
        [Key]
        [Column(Order = 0)]
        public string UserId { get; set; }

        [Key]
        [Column(Order = 1)]
        public string RoleId { get; set; }

        public virtual AspNetUsers AspNetUsers { get; set; }
    }
}

public partial class AspNetUsers
    {
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
        public AspNetUsers()
        {
            AspNetUserRoles = new HashSet<AspNetUserRoles>();
        }

        public string Id { get; set; }

        [StringLength(256)]
        public string Email { get; set; }

        public bool EmailConfirmed { get; set; }

        public string PasswordHash { get; set; }

        public string SecurityStamp { get; set; }

        public string PhoneNumber { get; set; }

        public bool PhoneNumberConfirmed { get; set; }

        public bool TwoFactorEnabled { get; set; }

        public DateTime? LockoutEndDateUtc { get; set; }

        public bool LockoutEnabled { get; set; }

        public int AccessFailedCount { get; set; }

        [Required]
        [StringLength(256)]
        public string UserName { get; set; }

        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
        public virtual ICollection<AspNetUserRoles> AspNetUserRoles { get; set; }
    }
}

我想知道这里可能出了什么问题。我可以在字符串ID上循环连接的AspNetUsers和AspNetUserRoles,它提供所有记录(根据MyViewModel键入)。然后在视图中,我希望能够获得针对AspNetUserRoles键入的特定记录,并能够对其进行编辑,尽管现在这与我在查询数据库时无法获得正确的记录无关。
我的想法是,这要么是使用@Html.ActionLink(“Edit”,“Edit”,“Home”,new{id=item.id},null)进行路由的问题(检查了URI的外观,它的正确含义是controller/action/parameter是ok的,也就是在解除字符串id不为null时),要么是Find()方法在接受字符串参数或事实上,我正在查询有两个键的表(尽管这只是一个想法,没有什么实际意义)。
任何铅都是有用的。
谢谢!

最佳答案

Find方法使用主键查找实体。由于在AspNetUserRoles模型上有组合主键,因此必须提供两个键来查找实体:

personRole = tbls.AspNetUserRoles.Find(userId, roleId);

roleId是要查找的角色的id。如果只有一个角色与用户关联,则可以查询并获取该角色:
personRole = tbls.AspNetUserRoles.Single(m => m.UserId == userId);

但请记住,如果用户有多个以上的角色,代码将抛出异常。
阅读有关查找实体here的更多信息。

07-26 09:07
查看更多