使 Linq-to-SQL 生成的用户类继承自 MembershipUser

发布于 2024-07-28 22:06:51 字数 279 浏览 7 评论 0原文

我目前正在为我的 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 技术交流群。

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

发布评论

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

评论(1

撩起发的微风 2024-08-04 22:06:51

通常代码生成工具会创建所谓的部分类,例如:

public partial class User
{
    // class definition here
} 

这意味着您可以在同一名称空间内的某个位置扩展该类的定义,如下所示:

public partial class User: MembershipUser
{
    // if MembershipUser doesn't have parameterless constructor then you need
    // to add here one
}

然后您将拥有继承自 MembershipUser 的 User 类。

Usually code generation tools creates so called partial classes, like:

public partial class User
{
    // class definition here
} 

This means that you can extend definition of that class somewhere within the same namespace like that:

public partial class User: MembershipUser
{
    // if MembershipUser doesn't have parameterless constructor then you need
    // to add here one
}

And then you'll have User class inheriting from MembershipUser.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文