Synchronization code

This commit is contained in:
sunkaixuan 2023-04-25 15:24:35 +08:00
parent b1109088a3
commit 9b8c527d4e

View File

@ -46,6 +46,7 @@ namespace SqlSugar
var result= value.ObjToString();
if (result == "||") return "OR";
else if (result == "&&") return "AND";
else if (result.EqualCase("isnot")) return " IS NOT ";
return result;
}
private static string GetSqlPartError(object value)