我使用实体框架来访问我的 SQL 数据。我在数据库模式中有一些约束,我想知道如何处理由这些约束引起的异常。
例如,在两个用户尝试同时向数据库添加(几乎)相同的实体的情况下,我得到以下异常。
System.Data.UpdateException
"An error occurred while updating the entries. See the InnerException for details."
(inner exception) System.Data.SqlClient.SqlException
"Violation of UNIQUE KEY constraint 'Unique_GiftId'. Cannot insert duplicate key in object 'dbo.Donations'.\r\nThe statement has been terminated."
如何正确捕获此特定异常?
肮脏的解决方案:
catch (UpdateException ex)
{
SqlException innerException = ex.InnerException as SqlException;
if (innerException != null && innerException.Message.StartsWith("Violation of UNIQUE KEY constraint 'Unique_GiftId'"))
{
// handle exception here..
}
else
{
throw;
}
}
现在,虽然这种方法有效,但它有一些缺点:
- 无类型安全:代码取决于包含唯一列名称的异常消息。
- 对 SqlCLient 类的依赖(抽象中断)
你知道一个更好的解决方案吗?感谢所有反馈..
注意:我不想在应用层中手动编写约束,我想将它们放在数据库中。