添加新角色时可以设置角色描述吗
添加角色时(利用 asp.net 的角色提供程序),我找不到添加角色(包括描述)的方法。
SQL 中的 asp.net 角色表提供了角色描述,但是唯一可用的方法是:
Roles.CreateRole(string RoleName);
没有包含描述的重载。
有没有一种开箱即用的方式来包含描述?或者我应该自己去做这件事?
When adding a role (making use of asp.net's role provider), i cannot find a method to add a role including a description.
the asp.net Role table in SQL makes provision for a role description, however the only method available is:
Roles.CreateRole(string RoleName);
there is no overload to include a description.
Is there an out of the box way of including the description? or should i go about this myself?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如您现在可能发现的那样,没有直接的方法来获取描述。它之所以存在只是因为它是 BaseProvider 的成员。现在,创建自己的方法来添加对描述的支持是相当简单的。虽然您不能扩展 Roles 类,但您可以执行以下操作:
如果代码看起来很混乱,我很抱歉。这是我在这里发表的第一篇文章 oO´
As you probably found out by now there's no direct way of getting hold of the description. It's only there because it's a member of the BaseProvider. Now it's fairly simple to make your own method for adding support for the description. You cannot extend the Roles class though but you can do something like this:
My apologies if the code looks messy. This is my first post here o.O´