gpt4 book ai didi

entity-framework - 如何在 Entity Framework 中使用事务?

转载 作者:行者123 更新时间:2023-12-03 10:06:36 27 4
gpt4 key购买 nike

当你有这样的代码时:

Something something = new Something();
BlahEntities b = new BlahEntities()
b.AddToSomethingSet(something);
b.SaveChanges();

如何在事务中运行该添加?

最佳答案

您可以将您的代码放在交易范围内

using(TransactionScope scope = new TransactionScope())
{
// Your code
scope.Complete(); // To commit.
}

TransactionScope 位于 System.Transactions 命名空间中,该命名空间位于同名程序集中(您可能需要手动将其添加到您的项目中)。

关于entity-framework - 如何在 Entity Framework 中使用事务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1054980/

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