How to use nhibernate with ASP.NET 3.5 (not MVC)

What's the best way to interact with NHibernate 2.0 and ASP.NET 3.5? How can I easily develop a CRUD application?

Is there an ObjectDataSource?

Thank.

+1


source to share


2 answers


You can find Rhino Commons a good option. It offers a <T> repository and a UnitOfWorkApplication. Together they provide data transfer and session management in the context of a web application. Use Castle.Service.Transaction to handle transactions transparently.



+1


source


you can watch screencasts at http://www.summerofnhibernate.com/ which will explain how to set up CRUD and shed some light on more advanced topics



+3


source







All Articles