This is my first experience with Dapper.Contrib (latest version from Nuget) and it\'s a strange situation:
using (SqlConnection cn = new Sql
It is desgined this way. You can override the default behavior by decorating your POCO classes with Dapper.Contrib.Extensions.TableAttribute.
Dapper.Contrib.Extensions.TableAttribute
using Dapper.Contrib.Extensions; [Table("Product")] public class Product { ... }