作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
string[] usersToAdd = new string[] { "asd", "asdert", "gasdff6" };
using (Entities context = new Entities())
{
foreach (string user in usersToAdd)
{
context.AddToUsers(new User { Name = user });
}
try
{
context.SaveChanges(); //Exception thrown: user 'gasdff6' already exist.
}
catch (Exception e)
{
//Roll back all changes including the two previous users.
}
或者这可能是自动完成的,这意味着如果发生错误,所有更改的提交更改都会被取消。是吗?
最佳答案
好的
我创建了一个示例应用程序,就像我在数据库中检查的问题和后记中的示例一样,没有添加任何用户。
结论:ObjectContext.SaveChange 它自动是一个事务。
注意:我相信如果执行存储过程等,将需要交易。
关于c# - 如何回滚 Entity Framework 中的事务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6626135/
我是一名优秀的程序员,十分优秀!