mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-23 20:43:46 +08:00
Sqlite special type
This commit is contained in:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user