如何在事务范围内使用 SQL 成员资格(无 DTC)?

发布于 2024-08-05 08:29:38 字数 526 浏览 5 评论 0原文

我正在尝试使用 SQL Express 上的 SQL 成员资格提供程序创建用户。当我使用 TransactionScope 时,它无缘无故地提示 DTC,我该如何避免它?

这是我的示例代码:

using (var ts = new TransactionScope())
{
    MembershipCreateStatus status;
    Membership.CreateUser(username, password, null, null, null, true, out status);

    var userProfile = ProfileBase.Create(username);

    userProfile.SetPropertyValue("Fullname", fullname);
    userProfile.Save();

    ts.Complete();
}

顺便说一句,我签入了反射器,每个成员资格 SQL 函数总是关闭其连接。

I'm trying to create a user using the SQL membership provider on SQL Express. When I use the TransactionScope it prompts to DTC with no apparent reason, how can I avoid it?

Here is my example code:

using (var ts = new TransactionScope())
{
    MembershipCreateStatus status;
    Membership.CreateUser(username, password, null, null, null, true, out status);

    var userProfile = ProfileBase.Create(username);

    userProfile.SetPropertyValue("Fullname", fullname);
    userProfile.Save();

    ts.Complete();
}

BTW, I checked in reflector and every membership SQL function always closes its connection.

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

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

发布评论

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

评论(1

落在眉间の轻吻 2024-08-12 08:29:38

您可以按照此处的建议来实现此功能,而无需进行事务。

You can implement this function without a transaction as suggested here.

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