使用 System.Transactions 时保存点的替代方案

发布于 2024-10-26 03:01:36 字数 408 浏览 1 评论 0 原文

如何使用 System.Transactions 命名空间中的类来实现与使用 SqlTransaction.Save(savePoint)SqlTransaction.Rollback(savePoint)。使用这两种方法的效果是能够在正在运行的事务中创建命名保存点,并且在出现问题时仅回滚到该保存点(在保存点之前创建的操作不会回滚)。

How can I use classes from System.Transactions namespace to achieve similar effect as I can get when using SqlTransaction.Save(savePoint) and SqlTransaction.Rollback(savePoint). The effect of using these two methods is ability to create named save point in the running transaction and in case of issue rollback only to the save point (operations created before save point are not rolled back).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦幻之岛 2024-11-02 03:01:36

保存点的实现部分是特定于数据库的。 Oracle 实现了它们,显然 SQL Server 也实现了它们。

System.Transactions 是为完整的事务而设计的,而不是事务过程中的中间保存点。

唉,因为如果在支持的最小公分母数据库 ACCESS JET 中拥有此功能,那就太好了。

Save Points are database specific in part of their implementation. Oracle implements them, and apparently so does SQL server.

System.Transactions is designed for full-bore transactions, and not intermediate save points along the way of a transaction.

Alas, because it would be nice to have this feature in the lowest-common denominator database supported: ACCESS JET.

明媚如初 2024-11-02 03:01:36

yourcontext.Database.ExecuteSqlCommand(string.Concat("保存事务", savePoint));

yourcontext.Database.ExecuteSqlCommand(string.Concat("回滚事务", savePoint));

yourcontext.Database.ExecuteSqlCommand(string.Concat("save transaction ", savePoint));

yourcontext.Database.ExecuteSqlCommand(string.Concat("rollback transaction ", savePoint));

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文