我有以下 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 或名称可能已经存在的一般消息,那么有没有办法确切地知道哪个字段引发了错误并向用户显示更具体的错误消息?

请您参考如下方法:

你可以创建这个扩展:

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!


评论关闭
IT序号网

微信公众号号:IT虾米 (左侧二维码扫一扫)欢迎添加!