Upate core

This commit is contained in:
sunkaixuan
2018-03-20 17:16:07 +08:00
parent 9b1a57b72f
commit e285f1d14d
18 changed files with 200 additions and 72 deletions

View File

@@ -213,6 +213,9 @@ namespace SqlSugar
var addItem = readerValues[info];
if (addItem == DBNull.Value)
addItem = null;
if (prop.PropertyType == UtilConstants.IntType) {
addItem = addItem.ObjToInt();
}
result.Add(name, addItem);
}
}