Asp.Net MVC 2 中的 AccountController 在哪里存储其数据?

发布于 2024-09-02 01:29:04 字数 216 浏览 4 评论 0原文

我正在使用 ASP.NET MVC 2 创建一个网站,我正在考虑使用默认的 AccountController 和视图来照顾用户。

唯一的问题是,对于其他所有问题,我使用的是 Postgres 数据库。

有没有办法将帐户控制器链接到我定义的用户类?

我使用 Nhibernate 连接到数据库,因此我将有一个包含任何必要字段的 User 类。

非常感谢。

I'm creating a website using ASP.NET MVC 2 and I'm thinking of using the default AccountController and Views to take care of the Users.

The only problem is that, for all the rest, I'm using a Postgres database.

Is there a way to link The account controller to a User class defined by me?

I'm using Nhibernate to connect to the database, so I'll have a User class with whatever fields necessary.

Thanks very much.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

零度° 2024-09-09 01:29:04

您可能需要查看 NHibernate Membership Provider 项目并使用它作为构建的基础。

You might want to look at NHibernate Membership Provider project and use it as a base to build from.

凉风有信 2024-09-09 01:29:04

它使用 web.config 中定义的成员资格提供程序。默认情况下,这是 SQL Server 提供程序。不过,你可以改变这一点。您可以使用 Postgres 提供程序,或切换到其他身份验证系统(例如 OpenID)。 (身份验证与会员提供商不同。)

It uses the membership provider defined in your web.config. By default, this is the SQL Server provider. You can change that, though. You could use a Postgres provider, or switch to a different authentication system like OpenID. (Authentication is different than the membership provider.)

北方的巷 2024-09-09 01:29:04

使用 PostgresSQL 的自定义成员资格提供程序,如下所示:

http:// /blog.woodchop.com/2006/09/postgresql-membership-provider-for.html

Use a custom membership provider for PostgresSQL like this one:

http://blog.woodchop.com/2006/09/postgresql-membership-provider-for.html

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