Sqlite byte BUG

This commit is contained in:
sunkaixuan 2019-04-20 20:26:21 +08:00
parent c1fd924f2c
commit 9fedcac47d

View File

@ -198,6 +198,10 @@ namespace SqlSugar
{
method = isNullableType ? getConvertInt32 : getInt32;
}
else if (bindPropertyType == UtilConstants.ByteType)
{
method = isNullableType ? getConvertByte : getByte;
}
else if (bindPropertyType == UtilConstants.StringType)
{
method = getString;