1

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

Is the ObjectDataSource the way to go?

Thank you.

BobbyShaftoe
  • 28,337
  • 7
  • 52
  • 74
ChaosSpeeder
  • 3,468
  • 5
  • 30
  • 38

2 Answers2

3

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

AndreasKnudsen
  • 3,453
  • 5
  • 28
  • 33
1

You might find Rhino Commons a good option. It offers Repository<T> and UnitOfWorkApplication. Together these provide data gateway and session management in the context of a web application. Use with Castle.Service.Transaction to handle transactions transparently.

Tim Scott
  • 15,106
  • 9
  • 65
  • 79