3

我有以下 Action 方法,目前模型类有两个属性,在数据库中设置为 Unique (名称和 IP )。因此,如果用户尝试添加/编辑记录,并且他提供了已经存在的 IP 或名称,则会引发以下异常DbUpdateException.

[HttpPost]
        [ValidateAntiForgeryToken]
        public ActionResult Create(ServerToEdit serverToEdit)
        {
            try
            {
               if (ModelState.IsValid)
           {
                repository.InsertOrUpdateServer(serverToEdit.Server,serverToEdit.TechnologyIP);
                repository.Save();
                return RedirectToAction("Index");
            }

               else
               {

                return View(serverToEdit);
           }
           }
           catch ()
           {
               ModelState.AddModelError(string.Empty, "Error occured. The Same IP/Name might already assinged.");

               return View(serverToEdit);


           }
           catch (DbEntityValidationException)
           {
               ModelState.AddModelError(string.Empty, "Error occured. User might not be defiend inside Active Directory.");

               return View(serverToEdit);
           }

            return null;

并且我正在显示 IP 或名称可能已经存在的一般消息,那么有没有办法确切地知道哪个字段引发了错误并向用户显示更具体的错误消息?

4

2 回答 2

-1

您可以创建此扩展:

public static class DbUpdateExceptionExtension
{
    public static bool ViolateConstraint(this DbUpdateException e, string fieldName)
    {
        return e.InnerException.InnerException.Message.Contains(fieldName);
    }
}

然后,如果您有这样的约束:

ALTER TABLE [Account]  ADD CONSTRAINT UniqueLogin  UNIQUE([Login])

你可以这样做:

try
{
    await databaseContext.SaveChangesAsync();
    return RedirectToAction("Index");
}
catch (DbUpdateException e)
{
    if (e.ViolateConstraint("UniqueLogin"))
        ModelState.AddModelError("Login", "Nom d'utilisateur ou mot de passe non valide.");
}

高频 GL !

于 2014-05-09T23:26:20.023 回答
-2

是的,您可以调用Context.ValidateEntity

DbEntityValidationResult包含问题。在里面你会看到 ICollection<DbValidationError> ValidationErrors 哪个有

 public string PropertyName { get; }
 public string ErrorMessage { get; }
于 2013-07-23T02:13:45.127 回答