后端代码中的默认 SqlRoleProvider

发布于 2024-09-08 04:44:34 字数 48 浏览 3 评论 0原文

如何访问 DAL 中的默认 SqlProvider?我以前只通过网络表单做过这个。

How do I access the default SqlProvider in a DAL? I've only ever done this before from webforms.

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

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

发布评论

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

评论(1

尬尬 2024-09-15 04:44:41

使用以下

using System.Web.Security;
....
SqlRoleProvider roleProvider = new SqlRoleProvider();
string[] roles = roleProvider.GetAllRoles(); //for example to get all role names

编辑

要配置您的应用程序以使用 SqlRoleProvider,您需要在 web.config 文件的 部分添加以下内容。

<roleManager enabled="true" defaultProvider="SqlRoleManager">
  <providers>
    <add name="SqlRoleManager" 
         type="System.Web.Security.SqlRoleProvider"
         connectionStringName="MyConnectionStringName" //change this to the name of your connection string
         applicationName="MyApplication" />
  </providers>
</roleManager>

With the following

using System.Web.Security;
....
SqlRoleProvider roleProvider = new SqlRoleProvider();
string[] roles = roleProvider.GetAllRoles(); //for example to get all role names

EDIT

To configure your application to use the SqlRoleProvider you'll need to add the following under the <system.web> section of your web.config file.

<roleManager enabled="true" defaultProvider="SqlRoleManager">
  <providers>
    <add name="SqlRoleManager" 
         type="System.Web.Security.SqlRoleProvider"
         connectionStringName="MyConnectionStringName" //change this to the name of your connection string
         applicationName="MyApplication" />
  </providers>
</roleManager>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文