Entity doble to string

This commit is contained in:
sunkaixuan 2023-08-23 13:41:55 +08:00
parent 881ae51ebc
commit a565ba1dc3

View File

@ -416,6 +416,10 @@ namespace SqlSugar
{
method = isNullableType ? getOtherNull.MakeGenericMethod(bindPropertyType) : getOther.MakeGenericMethod(bindPropertyType);
}
if (bindProperyTypeName == "string")
{
method = null;
}
break;
case CSharpDataType.Guid:
CheckType(bind.GuidThrow, bindProperyTypeName, validPropertyName, propertyName);