Update json 2 sql

This commit is contained in:
sunkaixuan 2023-04-25 15:22:40 +08:00
parent 6b23a51d32
commit b1109088a3

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)