Andrew Sumido
Andrew Sumido
I have created a light abstraction library to help facilitate unit testing. As previously mentioned, this is not intended to test your queries with Dapper, but to provide a way...
In my designs, I typically create a factory class that creates instances of IDataAccessor. You can then inject the factory into your constructor and create an IDataAccessor as needed in...
There are two main reasons why I choose to implement a factory pattern in my designs: 1. To support multi-threaded scenarios. There are cases when I want to execute multiple...