Asp.Net MVC 2 中的 AccountController 在哪里存储其数据?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可能需要查看 NHibernate Membership Provider 项目并使用它作为构建的基础。
You might want to look at NHibernate Membership Provider project and use it as a base to build from.
它使用 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.)
使用 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