Code below must be supported.
using (var connection = new SqlConnection(connectionString))
{
var customer = new ExpandoObject() as IDictionary<string, object>();
customer.Add("Id", 10045);
customer.Add("LastUpdatedUtc", DateTime.UtcNow);
connection.InsertAll("Customer", new [] { customer });
}
Code below must be supported.