具有 SQL 架构的 ASP.NET 会员资格提供程序

发布于 2024-07-11 23:10:44 字数 135 浏览 6 评论 0原文

我想使用 ASP.NET 成员资格提供程序安全框架,但希望它使用 SQL Server 架构。 因此,我不想使用像 aspnet_Membership 这样的表,而是更喜欢像 sec.Membership 这样的表。 有没有人尝试过这个并让它发挥作用?

I would like to use the ASP.NET Membership Provider security framework but would like it to use SQL Server schema's. So instead of having tables such as aspnet_Membership I would prefer it to be something like sec.Membership. Has anyone tried this and got it to work?

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

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

发布评论

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

评论(2

如梦亦如幻 2024-07-18 23:10:44

我相信表名被硬编码到 ASP.NET 的默认 SQL 提供程序中。 您必须实现自定义提供程序来执行与默认提供程序相同的操作,但使用备用表名称。 本文可以帮助您了解如何编写自定义提供程序。

I believe the table names are hard-coded into the default SQL providers for ASP.NET. You'll have to implement custom providers to do the same things as the default providers, but using an alternate table name instead. This article can help you figure out how to write custom providers.

樱娆 2024-07-18 23:10:44

已经有一段时间了,但是当您在数据库中创建 ASPNET 会员资格提供程序时,它是否会创建一大堆由提供程序自身使用的存储过程? 如果是这样,您可以编辑表名称,并根据需要更新存储过程。 存储的过程名称必须保持生成时的名称...

按照建议创建自定义提供程序可能会更容易,但它可能是另一种选择...

Been a while, but when you create the ASPNET Membership provider into your database, doesn't it create a whole bunch of stored procedures that are used by the provider its self? If so you could edit the table names, and update the stored procedures as required. The stored procuedure names would have to remain as generated though...

Might be easier to just make a custom provider as recommended, but its potentially another option...

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