Duplicate key exception from Entity Framework?(实体框架中的重复键异常?)
问题描述
当我将具有给定用户名的现有用户插入我的数据库时,我试图捕捉抛出的异常.正如标题所说,我正在使用EF.当我尝试将用户插入 db 时引发的唯一异常是UpdateException" - 如何提取此异常以确定它是重复异常还是其他异常?
I'm trying to catch the exception thrown when I insert a already existing user with the given username into my database. As the title says then I'm using EF. The only exception that's thrown when I try to insert the user into to db is a "UpdateException" - How can I extract this exception to identify whether its a duplicate exception or something else?
推荐答案
catch (UpdateException ex)
{
SqlException innerException = ex.InnerException as SqlException;
if (innerException != null && innerException.Number == ??????)
{
// handle exception here..
}
else
{
throw;
}
}
在 ??????
处输入与唯一约束违规相对应的正确数字(我完全不知道).
Put the correct number at ??????
that corresponds to unique constraint violation (I don't know it from the top of my head).
这篇关于实体框架中的重复键异常?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:实体框架中的重复键异常?
基础教程推荐
- SSE 浮点算术是否可重现? 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01