This commit is contained in:
grzegorz.russek
2014-04-07 10:50:47 +00:00
parent 1de570be42
commit 16c56adb8b
5 changed files with 246 additions and 65 deletions

View File

@@ -28,7 +28,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
namespace DynamORM.Mapper
@@ -92,9 +91,9 @@ namespace DynamORM.Mapper
columnMap.Add(col.ToLower(), val);
propertyMap.Add(pi.Name, col);
if (val.Ignore)
ignored.Add(pi.Name);
ignored.Add(pi.Name);
}
ColumnsMap = columnMap;
@@ -136,5 +135,13 @@ namespace DynamORM.Mapper
return destination;
}
#region Type command cache
internal string InsertCommandText { get; set; }
internal string UpdateCommandText { get; set; }
#endregion Type command cache
}
}