diff --git a/src/Framework/Framework/Binding/IExpressionToDelegateCompiler.cs b/src/Framework/Framework/Binding/IExpressionToDelegateCompiler.cs index f51f245d82..badab03e1e 100644 --- a/src/Framework/Framework/Binding/IExpressionToDelegateCompiler.cs +++ b/src/Framework/Framework/Binding/IExpressionToDelegateCompiler.cs @@ -20,7 +20,8 @@ public DefaultExpressionToDelegateCompiler(DotvvmConfiguration config) interpret = config.Debug; } public Delegate Compile(LambdaExpression expression) => - interpret ? expression.Compile(preferInterpretation: interpret) : + // the interpreter is broken: https://github.com/dotnet/runtime/issues/96385 + // interpret ? expression.Compile(preferInterpretation: interpret) : expression.Compile(); // TODO: use FastExpressionCompiler // we can't do that atm since it still has some bugs, when these are fixed we should use that for all bindings