发生了System.Data.Entity.Infrastructure.DbUpdateException

时间:2015-09-23 14:47:30

标签: c# database entity-framework

所以我通过将模型中的对象解析为项目中的数据库并在该控制器内部创建了一个自定义控制器,有一个名为Edit的post方法,其中包含数据库字段,如 Id,标题,描述,FileName,FileType,FileSize,作者,DateUploaded

在编辑html视图中,我删除了一些元素,因为我想要编辑的是“标题”和“描述”,我还删除了我创建的控制器中edit方法中的字段。

解释一下;

public ActionResult Edit([Bind(Include = FileSharing "Id,Title,Description,FileName,FileType,FileSize,Author,DateUploaded")] FileSharing fileSharing)

成:

public ActionResult Edit([Bind(Include = "Id,Title,Description")] FileSharing fileSharing)

当我尝试编辑标题或说明时。它会出现例外错误

  发生了

System.Data.Entity.Infrastructure.DbUpdateException'   EntityFramework.dll但未在用户代码中处理

为什么我会收到此错误以及如何解决此问题?

Edit方法

public ActionResult Edit([Bind(Include = "Id,Title,Description")] FileSharing fileSharing)
    {
        if (ModelState.IsValid)
        {
            try
            {
                db.Entry(fileSharing).State = EntityState.Modified;
                db.SaveChanges();
                return RedirectToAction("Index");
            }
            catch (Exception)
            {
                ViewBag.EditFail = "Error editing file details.";
            }
        }
        return View(fileSharing);
    }

1 个答案:

答案 0 :(得分:0)

以下是我处理该异常的方法。

private Exception HandleDbUpdateException(DbUpdateException dbu)
        {
            var builder = new StringBuilder("A DbUpdateException was caught while saving changes. ");
            if (!(dbu.InnerException is System.Data.Entity.Core.UpdateException) ||
                !(dbu.InnerException.InnerException is System.Data.SqlClient.SqlException))
            {
                try
                {
                    foreach (var result in dbu.Entries)
                    {
                        builder.AppendFormat("Type: {0} was part of the problem. ", result.Entity.GetType().Name);
                    }
                }
                catch (Exception e)
                {
                    builder.Append("Error parsing DbUpdateException: " + e);
                }
            }
            else
            {
                var sqlException = (System.Data.SqlClient.SqlException)dbu.InnerException.InnerException;
                for (int i = 0; i < sqlException.Errors.Count; i++)
                {
                    builder.AppendLine("    SQL Message: " + sqlException.Errors[i].Message);
                    builder.AppendLine("    SQL procedure: " + sqlException.Errors[i].Procedure);
                }
            }

            string message = builder.ToString();
            return new Exception(message, dbu);
        }

然后,至少该异常具有更多相关信息,这可能使您很容易找出错误的内容(如某些数据库验证问题)。