Bill Robertson
Bill Robertson
@thomasgalliker It is working as expected. However, since I did all the work, I just reversed the SwallowException to ThrowException as I can picture a time where a dev would...
Yes, that is the default behavior to swallow and not blow up. ThrowException defaults to false and I do mention that in the xml comment on the property. There is...
Border would kinda work, but doesn't follow the spirit of 50 char limit for the title (first line) and 72 for subsequent lines. Those restrictions work nicely for command line...
@csware I don't follow what you are asking.
I never did win32 UI programming; I did c++ for about 6 months at the beginning of my career. I wanted to have a config switch, but got into those...
@Almenon You can wrap the dapper calls with your own interface. We have IDbExecutor that wraps the functions of dapper that we need. So at run time the DapperDbExecutor is...
@vakuras I have had good luck with [Polly ](https://github.com/App-vNext/Polly) to easily wrap Sql retry logic. It's syntax is a little awkward to start, but eventually grew on me.
As you can see from even your own example, there isn't a good way to know when to bubble up and when to retry, then we have a max retryCount...
I don't want to step on @mgravell and his thoughts for this library. Dapper should do Dapper things, if we want retry features: errors, exceptions, we should extend Dapper with...