Sqlite special type

This commit is contained in:
sunkaixuan
2022-04-28 14:50:14 +08:00
parent eeecca7ba2
commit 53ce3a6141

View File

@@ -233,6 +233,10 @@ namespace SqlSugar
{ {
method = isNullableType ? getOtherNull.MakeGenericMethod(bindPropertyType) : getOther.MakeGenericMethod(bindPropertyType); method = isNullableType ? getOtherNull.MakeGenericMethod(bindPropertyType) : getOther.MakeGenericMethod(bindPropertyType);
} }
else if (dbTypeName.EqualCase("STRING"))
{
method = isNullableType ? getOtherNull.MakeGenericMethod(bindPropertyType) : getOther.MakeGenericMethod(bindPropertyType);
}
else if (bindPropertyType == UtilConstants.StringType) else if (bindPropertyType == UtilConstants.StringType)
{ {
method = getString; method = getString;