How to insert a C# List to database using Dapper.NET
You’d have to do it a little differently. In Dapper, it matches on convention AKA property or field names being identical to SQL parameters. So, assuming you had a MyObject: public class MyObject { public int A { get; set; } public string B { get; set; } } And assuming processList = List<MyObject>, You’d … Read more