Does ...StackExchange.Dapper... support the following SQL syntax?...INSERT INTO MyTable (a, b, c)
VALUES
(1, 2, 3),
(4, 5, 6),
(7, 8, 9);
...I've seen some examples where you can pass in a List to be inserted but the descriptions I've seen suggest i...