This commit is contained in:
grzegorz.russek
2014-10-24 13:02:10 +00:00
parent c1dadc777d
commit 257cb158f4
6 changed files with 120 additions and 69 deletions

View File

@@ -129,7 +129,7 @@ namespace DynamORM.Mapper
foreach (var item in source.ToDictionary())
{
if (ColumnsMap.TryGetValue(item.Key.ToLower(), out dpi) && item.Value != null)
if (dpi.Set != null)
if (dpi.Setter != null)
dpi.Set(destination, item.Value);
}