I am using Dapper on ADO.NET. So at present I am doing the following:...using (IDbConnection conn = new SqlConnection("MyConnectionString")))
{
conn.Open());
using (IDbTransaction transaction = conn.BeginTransaction())
{
// ...
...However, there are vario...