Tag Archives: repository pattern
Repository pattern, done right
The repository pattern has been discussed a lot lately. Especially about it’s usefulness since the introduction of OR/M libraries. This post (which is the third in a series about the data layer) aims to explain why it’s still a great … Continue reading
Posted in Architecture, CodeProject
Tagged data-access, entity framework, nhibernate, repository pattern
22 Comments
TodoApp – Part 3: Fix that data source.
Let’s continue with the refactoring. What are the main window really doing?? Well. Displaying todo list Loading and saving stuff to the database That’s one thing too much. We’ll implement a Repository. imho, Fowler is wrong in his explanation. The … Continue reading