gpt4 book ai didi

c# - 如何回滚 Entity Framework 中的事务

转载 作者:行者123 更新时间:2023-11-30 18:41:40 25 4
gpt4 key购买 nike

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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com