Commit 271af11b authored by Alex Wiese's avatar Alex Wiese Committed by Nick Craver

Update SqlMapperExtensions.Async.cs

Made the same fix to `InsertAsync`
parent 307ab7ea
......@@ -165,7 +165,7 @@ public static partial class SqlMapperExtensions
var name = GetTableName(type);
var sbColumnList = new StringBuilder(null);
var allProperties = TypePropertiesCache(type);
var keyProperties = KeyPropertiesCache(type);
var keyProperties = KeyPropertiesCache(type).ToList();
var computedProperties = ComputedPropertiesCache(type);
var allPropertiesExceptKeyAndComputed = allProperties.Except(keyProperties.Union(computedProperties)).ToList();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment