mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-19 10:08:19 +08:00
Update exp to sql
This commit is contained in:
@@ -19,7 +19,7 @@ namespace SqlSugar
|
||||
public virtual string IsNullOrEmpty(MethodCallExpressionModel model)
|
||||
{
|
||||
var parameter = model.Args[0];
|
||||
return string.Format("( {0}='' OR {0} IS NULL )", parameter.MemberName);
|
||||
return string.Format("( {0} IS NULL OR {0}='')", parameter.MemberName);
|
||||
}
|
||||
|
||||
public virtual string HasValue(MethodCallExpressionModel model)
|
||||
|
@@ -483,7 +483,7 @@ namespace SqlSugar
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (item.Type == UtilConstants.BoolType && item is MethodCallExpression && (item as MethodCallExpression).Method.Name == "Any"&&IsSubMethod(item as MethodCallExpression))
|
||||
else if (item.Type == UtilConstants.BoolType && item is MethodCallExpression)
|
||||
{
|
||||
this.Expression = item;
|
||||
this.Start();
|
||||
|
Reference in New Issue
Block a user