- 优化 表达式树解析;

This commit is contained in:
2881099
2024-01-14 18:11:56 +08:00
parent 0d2d5175f0
commit d870c5e3e6
2 changed files with 116 additions and 0 deletions

View File

@ -2269,6 +2269,10 @@ namespace FreeSql.Internal
else
return Expression.Lambda(exp).Compile().DynamicInvoke();
break;
case ExpressionType.Call:
if (exp.IsParameter() == false)
return Expression.Lambda(exp).Compile().DynamicInvoke();
break;
}
while (expStack.Any())
{