I just start with both NHibernate and WCF. I would like to use NHibernate as my ORM in the class library where my repositories are stored. I also need to use WCF to expose my business logic, as well as my repositories for the rest of the company.
Is there any good documentation on how to complete this task? Are there pitfalls to take care in advance? Any recommended reads / books?
I am looking for information on how best to integrate NHibernate into WCF. I am using HttpModule, must connect something in global.asax of my service level (using IIS hosting, so that I start a web application project to start with). Do I go for a session for a request or something else?
source
share