With dapper, I can do batch execute for Stored Procedures, something similar to:...connection.Execute(@"
exec sp1 @i = @one, @y = @two
exec sp2 @i = @three",
new { one = 1, two = 2, three = 3 });
...However, the only means of retrieving data that I...