Skip to content

Commit

Permalink
Switch to interpreted client-evaluation in parameter extractor
Browse files Browse the repository at this point in the history
  • Loading branch information
roji committed Sep 18, 2023
1 parent d616f39 commit 37eb908
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ private static Expression RemoveConvert(Expression expression)
{
return Expression.Lambda<Func<object>>(
Expression.Convert(expression, typeof(object)))
.Compile()
.Compile(preferInterpretation: true)
.Invoke();
}
catch (Exception exception)
Expand Down

0 comments on commit 37eb908

Please sign in to comment.