This is an example of utilizing the Repository pattern implemented with NHibernate as data access framework but keeping in mind to provide a layer of abstraction to easy switch to another data access provider (Entity Framework for example). Patterns like Approval, Finder, Persistor, etc. Connecting to SQLite in memory; SQLite in file; Postgres with FluentNHibernate.
Following the podcasts of the MVC Storefront Project at the time learning the ASP.NET MVC framework was for me really good introduction to the ideas of the Domain Driven Design (DDD).
Now, months later and still new to the DDD, but very enthusiastic, I’ll try to sketch some ideas I learned so far and in practice to implement a complete example. In particular I’ll be utilizing the Repository pattern and implement it with NHibernate as data access framework. I’m using NHibernate but I keep in mind to ...
No comments yet, be the first one to post comment.