wcf 自动完成功能到底什么时候执行?
我想知道我是否有一个具有 TransactionScopeRequired 的 WCF 服务,但我不使用事务绑定...
是否可以先返回消息,然后事务可以回滚?
在其他工作中...哪个先执行?消息的返回或提交?
提前致谢。
I would like to know if I have a WCF service that has a TransactionScopeRequired but I don't use a transactional binding...
Is possible to return a message first and later the transaction could make a rollback?
In other workds... which executes first? the returning of the message or the commit?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当服务操作完成执行并且返回响应之前,事务被提交。
the transaction is committed when the service operation finishes executing, and before the response is returned.