我想告诉用户记录没有删除,因为它具有子数据,但是如何确定由于外键冲突而引发了异常?我看到有一个sqlexception类用于所有sql异常。

最佳答案

假设您正在使用SQL Server。
使用Web存档-https://web.archive.org/web/20190120182351/https://blogs.msdn.microsoft.com/tomholl/2007/08/01/mapping-sql-server-errors-to-net-exceptions-the-fun-way/

try
{
    # SQL Stuff
}
catch (SqlException ex)
{
    if (ex.Errors.Count > 0) // Assume the interesting stuff is in the first error
    {
        switch (ex.Errors[0].Number)
        {
            case 547: // Foreign Key violation
                throw new InvalidOperationException("Some helpful description", ex);
                break;
            case 2601: // Primary key violation
                throw new DuplicateRecordException("Some other helpful description", ex);
                break;
            default:
                throw new DataAccessException(ex);
        }
    }

}
案例547是你的男人。
UPDATE 上面是示例代码,不应使用。请点击链接以解释原因。

关于c# - 我如何知道是否由于违反外键而引发了SQLException?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2403348/

10-09 09:36