Я пытаюсь использовать метод Parse, доступный в библиотеке System.Linq.Dynami c. Когда я выполняю следующий простой пример,
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");
Dictionary<string, ParameterExpression> symbols = new Dictionary<string, ParameterExpression>();
symbols.Add("x", x);
symbols.Add("y", y);
Expression body = System.Linq.Dynamic.DynamicExpression.Parse(null, "(x + y) * 2", symbols);
LambdaExpression e = Expression.Lambda(body, new ParameterExpression[] { x, y });
var c = e.Compile();
var result = c.DynamicInvoke(1, 2);
Console.WriteLine(result);
}
}
}
, выдается следующее исключение.
System.TypeInitializationException: 'The type initializer for 'System.Linq.Dynamic.ExpressionParser' threw an exception.
InnerException
FileNotFoundException: Could not load file or assembly 'System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'. The system cannot find the file specified.
Есть идеи, что я делаю неправильно?