1

将记录更新为数据库中已存在的记录时,是否有人有一种简单的方法来处理此异常?

4

1 回答 1

1

尝试这个:

catch (UpdateException ex)
{
    SqlException innerException = ex.InnerException as SqlException;

    if (innerException != null && innerException.Number == ??????)   
    {
        //Place you exception code handling here..    
    }
    else  
    {

        throw; //(bubble up)    
    }
}

这是一个简单的解决方案,但如果错误号发生变化,您将来可能会遇到问题,这不太可能)。

于 2013-04-08T06:36:46.937 回答