我可以在 TransactionScope 中从数据库检索数据吗?

发布于 2024-10-14 23:13:14 字数 372 浏览 1 评论 0原文

我有一个 TransactionScope,其中包含另一个 TransactionScope,它进行插入,然后我提交内部 TransactionScope。在提交外部 TransactionScope 之前,我希望能够从数据库中检索插入的数据。可以这样做吗?

视觉辅助:

TransactionScope #1
  TransactionScope #2
    //Insert
  TransactionScope #2 -- Committed

  //Can i retrieve the values of my insert from the database from here?
TransactionScope #1 -- Committed

I have a TransactionScope that houses another TransactionScope which makes an insert, then i commit the inner TransactionScope. Before i commit the outer TransactionScope, i want to be able to retrieve the data of my insert from the database. Is it possible to do that?

Visual Aid:

TransactionScope #1
  TransactionScope #2
    //Insert
  TransactionScope #2 -- Committed

  //Can i retrieve the values of my insert from the database from here?
TransactionScope #1 -- Committed

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

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

发布评论

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

评论(1

抱着落日 2024-10-21 23:13:14

是的,只要您在同一事务中执行此操作,就可以执行此操作。

Yes, you can do that as long as you're doing it from within the same transaction.

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