I setup a solution with the following structure:
Project.Core
Domain
Mappings
Repositories
Project.Web
Views
Models
Contollers
Project.Web is the asp.net MVC 3 template. I was wondering what would be the best architecture would be if i'm using MVC and NHibernate and I wont other web applications to utilize the Project.Core library.
It seems like the Domain and the Models are pretty much the same thing?
If I want to use the Domain's instead of the model how would I modify the asp.net mvc3 project to accept this?
Thanks