Added timespan to type mapping

This commit is contained in:
2024-07-23 14:43:48 +02:00
parent 827b1c4a65
commit 0a54a3e7e4
4 changed files with 7 additions and 3 deletions

View File

@@ -196,7 +196,7 @@ namespace DynamORM.Builders.Implementation
DynamicPropertyInvoker propMap = mapper.ColumnsMap.TryGetValue(colName.ToLower());
if (propMap == null || propMap.Column == null || !propMap.Column.IsNoInsert)
Insert(colName, con.Value);
Insert(colName, con.Value); // TODO: This probably should get value from mapper
}
}
else