如何在事务中调用Membership和Roles方法?

发布于 2024-11-07 17:14:39 字数 143 浏览 1 评论 0原文

我有一个调用 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 技术交流群。

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

发布评论

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

评论(1

轻许诺言 2024-11-14 17:14:39

将您的更新放在 TransactionScope 范围内:

using (TransactionScope trans = new TransactionScope([option]))
{
    Membership.Provider.UpdateUser(...);
    Membership.Provider.UpdateUser(...);
    trans.Complete();
}

Place your updates within a TransactionScope scope:

using (TransactionScope trans = new TransactionScope([option]))
{
    Membership.Provider.UpdateUser(...);
    Membership.Provider.UpdateUser(...);
    trans.Complete();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文