使用 IEnlistmentNotification 接口进行两阶段提交
当调用 Commit 时(为了实现 IEnlistmentNotification),我可以抛出一个异常来指示我希望事务回滚吗?
When Commit is called (for the implementation of IEnlistmentNotification) can I just throw an exception to indicate I want the transaction to rollback?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该改为调用 Transaction.Rollback(Exception ex ):
You should instead call Transaction.Rollback(Exception ex):