我的角色存储在哪里?
我已在 ASP.NET Web 应用程序中启用了角色,但我对它们的存储位置有点困惑。在我的旧项目中,每个角色都会出现在 ASP.NET 角色表中,我可以看到它们。但是,在我的新项目中,我在数据库表中看不到任何角色。奇怪的是,我仍然可以使用它们(以及默认的角色/会员 API)并且一切正常。有什么想法为什么它们没有出现在数据库表本身以及它们实际存储的位置吗?
我的 web.config
文件包含以下内容:
<roleManager enabled="true" />
使用 ASP.NET 配置工具,我的默认角色提供程序是 AspNetSqlRoleProvider
。
谢谢 更新 我在 web.confg 中明确添加了这个
<roleManager enabled="true" >
<providers>
<clear/>
<add connectionStringName="myDBConnectionString" name="AspNetSqlRoleProvider"/>
</providers>
</roleManager>
I've enabled Roles
in my ASP.NET web application, but I'm slightly confused as to where they are being stored. In my old project, each Role would appear in the ASP.NET Roles table, and I could see them. However, in my new project, I can't see any Roles in the database table. The strange thing is, I can still use them (and the default Roles/Membership API) and everything works fine. Any ideas why they are not appearing the database table itself, and where they are actually being stored?
My web.config
file has this:
<roleManager enabled="true" />
Using the ASP.NET configuration tool, my default Role provider is AspNetSqlRoleProvider
.
Thanks
Update
I added this explicitly in my web.confg
<roleManager enabled="true" >
<providers>
<clear/>
<add connectionStringName="myDBConnectionString" name="AspNetSqlRoleProvider"/>
</providers>
</roleManager>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
默认情况下,它确实使用本地数据库,除非角色提供程序指向使用不同数据库连接的数据库。
如果您在自己的自定义数据库而不是 ASPNETDB.mdf 文件中设置表,则必须设置指向 SQLroleprovider 的自定义提供程序定义,并提供对数据库所在位置的自定义连接字符串引用。
HTH。
By default, it does use the local database unless the role provider points to a database using a different database connection.
If you setup the tables in your own custom database and not the ASPNETDB.mdf file, then you will have to setup a custom provider definition pointing to the SQLroleprovider, and provide a custom connection string reference to where the database is.
HTH.
在您的 asp.net 成员资格数据库中有两个表:aspnet_Roles 包含角色,aspnet_UsersInRoles 包含用户与角色的关联。
In your asp.net membership database are two tables: aspnet_Roles contains the roles and aspnet_UsersInRoles contains the association of users with roles.
它将在 App_Data 文件夹中构建自己的数据库并在那里创建所需的表
it will build it’s OWN database in the App_Data folder and create the required tables there