Linq:如何验证 dbcontext.SubmitChanges() 更新/插入是否成功?
如何验证 SubmitChanges() 是否适用于插入和更新?该方法不返回 bool 或 int 值。
How do you verify that SubmitChanges() worked for inserts and updates? The method doesn't return a bool or int value.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果插入失败,它将抛出 SqlException。我认为它可能对失败的更新执行相同的操作。
If an insert fails it will throw a SqlException. I think it may do the same for failed updates.