I am building a website using ASP.NET MVC 2, and I am considering using the default AccountController and Views to take care of Users.
The only problem is that for all the rest I use the Postgres database.
Is there a way to associate an account controller with a user-defined class User?
I use Nhibernate to connect to the database, so I will have a User class with any required fields.
Many thanks.
Jlago source
share