1

我的 Asp.net Mvc4 应用程序有问题。

我设计了一个“用户”表和一个“可投影”表,并且存在多对多关系。

我的用户表:

 public partial class User
{
    public User()
    {
        this.Role = new HashSet<Role>();
        this.Project = new HashSet<Project>();
    }

    public int Id { get; set; }
    public string Username { get; set; }
    public string Password { get; set; }

    public virtual ICollection<Role> Role { get; set; }
    public virtual ICollection<Project> Project { get; set; }
}

还有我的项目表:

public partial class Project
{
    public Project()
    {
        this.Thresholds = new HashSet<Thresholds>();
        this.User = new HashSet<User>();
        this.Testrelease = new HashSet<Testrelease>();
    }

    public int Id { get; set; }
    public string Name { get; set; }

    public virtual ICollection<Thresholds> Thresholds { get; set; }
    public virtual ICollection<User> User { get; set; }
    public virtual ICollection<Testrelease> Testrelease { get; set; }
}

在我的项目控制器中:

public ActionResult EditProject(int id = 0)
    {
        Project project = db.Project.Find(id);
        if (project == null)
        {
            return HttpNotFound();
        }
        List<CheckBoxListInfoInt> userCheck = new List<CheckBoxListInfoInt>();
        foreach (User U in db.User.ToList())
        {
            userCheck.Add(new CheckBoxListInfoInt
            {
                ValueInt = U.Id,
                DisplayText = U.Username,
                IsChecked = (project.User.Contains(U))
            });
        }
        ViewBag.P_usrCB = userCheck;
        ViewData["pid"] = id;
        return View(project);
    }

    //
    // POST: /KPI_Data/Edit/5

    [HttpPost]
    [ValidateAntiForgeryToken]
    public ActionResult EditProject(Project project)
    {
        if (ModelState.IsValid)
        {
            db.Project.Attach(project);

            db.Entry(project).State = EntityState.Modified;

            if (project.User.Count > 0)
                project.User.Clear();


            List<string> usrlist = new List<string>();
            var ucb = Request.Form["P_usrCB"];
            if (ucb != null)
                foreach (string item in ucb.Split(','))
                {
                    int UserId = Convert.ToInt32(item);
                    User usr = db.User.Single(x => x.Id == UserId);
                    project.User.Add(usr);
                    usrlist.Add(usr.Username);
                }
            db.SaveChanges();
            return RedirectToAction("Index");
        }
        return View(project);
    }

错误发生在

db.SaveChanges();

在我的 HttpPost ActionMethod 中

错误消息是:

保存不为其关系公开外键属性的实体时发生错误。EntityEntries 属性将返回 null,因为无法将单个实体标识为异常源。通过在实体类型中公开外键属性,可以更轻松地在保存时处理异常。有关详细信息,请参阅 InnerException。

为什么我会收到此错误?解决方案是什么?谢谢

4

1 回答 1

-1

避免db.Entry(ptvm.place).State = EntityState.Modified;,因为它会导致没有更新的并发冲突。将 ViewModel 用于多对多关系而不是两个表。

你必须使用UpdateModel(table object, "model");

完整示例如下:

[HttpPost]
public ActionResult PlaceTag(PlacesWithTagsViewModel model)
{
    if (ModelState.IsValid)
    {
       tag tagtest = GetTagById(model.tagid);
       tag.name= model.tag.name;
       tag.nameplural = model.tag.nameplural;
       UpdateModel(tag, "model");
       db.SaveChanges();
       return RedirectToAction("Index", "Dashboard", new { id = 5 });
    } 
}

UpdateModel 的优点是您只需提及您更新的那些字段,避免那些保持静态的字段。通过这种方式,您可以在编辑视图中使用 Viewmodel 更新您的相关数据。

于 2013-06-05T13:26:31.350 回答