Unit Testing on Top of Entity Framework DbContext
When writing unit tests one of the challenges is to isolate your tests from everything. To isolate them from the code that is not in their
Sharing experiences and ideas about effective code design
When writing unit tests one of the challenges is to isolate your tests from everything. To isolate them from the code that is not in their
In my previous post I have presented a way to separate your data access from the business logic, when a relational database is used. I have
In our days most of the applications that have a relational database as storage, use an ORM to access the data. The ORM (Entity Framework, Hibernate,
Recently, I’ve went again through the discussion of how the Repository Pattern works with Dependency Injection (DI) in one of the projects I’m involved