如何在事务中调用Membership和Roles方法?
我有一个调用 Membership.UpdateUser() 的方法以及一些 Roles 方法以及我自己的一些自定义插入、删除操作。是否可以在一次交易中完成所有这些操作?我没有看到任何方法将交易与会员资格或角色提供者关联起来。澄清一下,我希望所有操作都在同一个事务中进行。
I have a method which calls Membership.UpdateUser() as well as some Roles methods along with some custom inserts, deletes of my own. Is it possible to do all this in a transaction? I don't see any way to associate a transaction with the Membership or Roles providers. To clarify, I would like all operations to happen within the same transaction.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将您的更新放在 TransactionScope 范围内:
Place your updates within a TransactionScope scope: