使 Linq-to-SQL 生成的用户类继承自 MembershipUser
我目前正在为我的 Asp.net MVC 网站构建自定义会员提供程序。 我有一个带有 Users 表的现有数据库,并且我正在使用 Linq-to-Sql 自动生成此类。
我想要做的是让这个生成的 User 类继承自 MembershipUser 类,这样我就可以在 GetUser 等方法中更轻松地在我的自定义 Membership Provider 中使用它。 我已经在表中添加了所有必要的列。
有什么办法可以做到这一点吗? 还是我以完全错误的方式处理这个问题?
谢谢!
I am currently building a custom Membership Provider for my Asp.net MVC website. I have an existing database with a Users table and I'm using Linq-to-Sql to automatically generates this class for me.
What I would like to do is have this generated User class inherit from the MembershipUser class so I can more easily use it in my custom Membership Provider in methods such as GetUser. I already have all the necessary columns in the table.
Is there any way to do this? Or am I going about this the completely wrong way?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常代码生成工具会创建所谓的部分类,例如:
这意味着您可以在同一名称空间内的某个位置扩展该类的定义,如下所示:
然后您将拥有继承自 MembershipUser 的 User 类。
Usually code generation tools creates so called partial classes, like:
This means that you can extend definition of that class somewhere within the same namespace like that:
And then you'll have User class inheriting from MembershipUser.