如何处理c#中的级联删除异常

时间:2015-06-27 12:04:59

标签: c# sql-server database exception

cascade delete上,当用户想要c#字段和delete时,我希望在occur exception中向用户显示消息,但不知道number of this error。请帮帮我。

try{
    cmd.ExecuteNonQuery();
}
catch (SqlException ex)
{
    if(ex.number == (?))
        MessageBox.Show("could not deleted, used in other tables");
}

1 个答案:

答案 0 :(得分:1)

马苏德,

这个链接有一个有趣的解释如何做到这一点。 http://blogs.msdn.com/b/tomholl/archive/2007/08/01/mapping-sql-server-errors-to-net-exceptions-the-fun-way.aspx

你会有类似的东西:

try
{
    db.ExecuteNonQuery();
}
catch (SqlException ex)
{
    if (ex.Errors.Count == 1) // 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);
        }
    }
    else throw;
}

我建议您为用户提供替代方案,只显示错误消息不是您可以提供的最佳用户体验。也许创建一个列来将条目定义为非活动状态。