Update sqlite

This commit is contained in:
sunkaixuan
2023-05-12 22:30:24 +08:00
parent ffe2d4f9fc
commit 194aec1df2

View File

@@ -317,6 +317,10 @@ namespace SqlSugar
{
method = isNullableType ? getOtherNull.MakeGenericMethod(bindPropertyType) : getOther.MakeGenericMethod(bindPropertyType);
}
else if (bindPropertyType == UtilConstants.StringType&&validPropertyName == "int")
{
method = isNullableType ? getOtherNull.MakeGenericMethod(bindPropertyType) : getOther.MakeGenericMethod(bindPropertyType);
}
else if (bindPropertyType == UtilConstants.StringType)
{
method = getString;