自定义 ASP.NET 成员资格表
我可以调整 ASP.NET 成员资格表来添加一些我自己的列吗?例如,我想通过添加包含用户角色缩写名称的 RoleCode 来扩展 Roles 表。这只是一个例子,但这可能吗?我知道我必须在应用程序本身中调整一些 SP 和一些代码,但同样,这可能吗?
Can I adjust the ASP.NET Membership Tables to add some columns of my own? For example, I'd like to extend the Roles table by adding RoleCode containing the abbreviated name for the user role. It's just an example but is it possible? I know I'd have to adjust a few SPs and a bit of code in the app itself, but again, is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以,但为什么不直接将要添加的字段存储在配置文件提供程序中呢?它更容易,并且无需修改存储过程或数据库中的内容即可实现相同的目标。此外,您还可以在配置文件本身上获得强类型属性以进行编码。
http://odetocode.com/Articles/440.aspx
You could, but why not just store the fields you want to add in the Profile Provider? It's much easier and achieves the same thing without having to modify a thing in the sprocs or DB. In addition, you also get strongly typed properties on the profile itself for coding against.
http://odetocode.com/Articles/440.aspx