How can I gradually transition to NHibernate persistence logic from existing ADO.NET persistence logic?
问题 The application uses ADO.NET to invoke sprocs for nearly every database operation. Some of these sprocs also contain a fair amount of domain logic. The data access logic for each domain entity resides in the domain class itself. ie, there is no decoupling between domain logic and data access logic. I'm looking to accomplish the following: decouple the domain logic from the data access logic make the domain model persistence ignorant implement the transition to NHibernate gradually across