c# – 这是可能的,DbContext.SaveChanges()返回0但没有异常?

前端之家收集整理的这篇文章主要介绍了c# – 这是可能的,DbContext.SaveChanges()返回0但没有异常?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用Entity Framework 4.0. SaveChanges()可能返回0但不会引发异常?例如,添加后.

这是我的代码

try
{
    _context.CodeProducts.Add(entity);
    _context.SaveChanges();

    //Shell I control return result from SaveChanges() in here.
    //However doesn't throw an exceoption?

    return new MethodResponse()
    {
        ResultText = "Successful",Type = MethodResponse.ResponseType.Succeed
    };
}
catch (OptimisticConcurrencyException exc)
{
    throw exc;
}
catch (UpdateException exc)
{
    throw exc;
}
catch (Exception exc)
{
    throw exc;
}

解决方法

根据 the documentation,DbContext.SaveChanges的返回值为

The number of objects written to the underlying database.

所以你看到的只有在没有实体需要保存到数据库的时候才可能.

原文链接:https://www.f2er.com/csharp/95931.html

猜你在找的C#相关文章