ParseLambda 方法抛出异常

ParseLambda method throws an exception

我正在尝试使用 System.Linq.Dynamic 库中提供的 ParseLmabda 方法。当我执行以下简单示例时,

using Microsoft.Data.SqlClient;
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Dynamic;
using System.Linq.Expressions;

namespace DynamicLINQDemo
{
    class Program
    {
        static void Main(string[] args)
        {
            ParameterExpression x = Expression.Parameter(typeof(int), "x");
            ParameterExpression y = Expression.Parameter(typeof(int), "y");
            LambdaExpression e = System.Linq.Dynamic.DynamicExpression.ParseLambda(new ParameterExpression[] { x, y }, null, "(x + y) * 2");
        }
    }
}

它抛出以下异常。

System.TypeInitializationException: 'The type initializer for 'System.Linq.Dynamic.ExpressionParser' threw an exception.

知道我做错了什么吗?

使用 System.Linq.Dynamic.Core 时有效:

ParameterExpression x = Expression.Parameter(typeof(int), "x");
ParameterExpression y = Expression.Parameter(typeof(int), "y");
LambdaExpression e = DynamicExpressionParser.ParseLambda(new [] { x, y }, null, "(x + y) * 2");

var c = e.Compile();
var result = c.DynamicInvoke(1, 2);
Console.WriteLine(result);