I would like to run multiple insert statements on multiple tables. I am using dapper.net. I don\'t see any way to handle transactions with dapper.net.
Please share y
You should be able to use TransactionScope since Dapper runs just ADO.NET commands.
TransactionScope
using (var scope = new TransactionScope()) { // open connection // insert // insert scope.Complete(); }