This is part two of a two part series. TheĀ first post covers the thought process that I often go through when implementing the repository design pattern. This post will show a complete implementation. I want to start by saying that I don’t really have a preference as to whether repositories should be coarse-grained or fine-grained. However, I do find that …
Repository Design Pattern in C# Part 1
This is part one of a two part series. This post covers the thought process that I often go through when implementing the repository design pattern. The next post will show a complete implementation. The repository design pattern has become very popular in the .NET ecosystem in recent years mainly because it is a simple data access abstraction that can …