Does anyone know if it's possible to tell dapper to append with (nolock)
when using connection.GetList<TView>()
?
I am using this as the R from my CQRS model and it works well but I'm concerned now we're doing a bit more heavy reading that it will start locking out tables. I'd rather not add transactions into the mix if possible.