mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 08:37:25 +08:00
Update exp to sql
This commit is contained in:
parent
d904c684a6
commit
5de90ca4b8
@ -69,6 +69,7 @@ namespace SqlSugar
|
||||
{
|
||||
var isLeft = parameter.IsLeft;
|
||||
object value = ExpressionTool.GetValue(expression.Value, this.Context);
|
||||
var isNullStr = value != null && value.ObjToString() == "NULL";
|
||||
value = ConvetValue(parameter, expression, value);
|
||||
if (IsEnumString(value))
|
||||
value = ConvertEnum(value);
|
||||
@ -116,6 +117,11 @@ namespace SqlSugar
|
||||
parameter.BaseParameter.ValueIsNull = true;
|
||||
value = this.Context.DbMehtods.Null();
|
||||
}
|
||||
if (isNullStr)
|
||||
{
|
||||
this.Context.Result.Append(AppendParameter(value));
|
||||
break;
|
||||
}
|
||||
AppendValue(parameter, isLeft, value);
|
||||
}
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user