评估Lambda表达式作为表达式树的一部分

时间:2013-11-26 10:49:36

标签: c# lambda expression-trees

我正在尝试使用表达式树构建一个lambda表达式。这是我试图创建的lambda表达式的格式:

Func<DateTime, string> requiredLambda = dt =>
    {
        var formattedDate = dt.ToShortDateString();

        /**
        * The logic is not important here - what is important is that I 
        * am using the result of the executed lambda expression.
        * */
        var builder = new StringBuilder();
        builder.Append(formattedDate);
        builder.Append(" Hello!");
        return builder.ToString();
    };

问题在于我不是从头开始构建这个树 - 格式化逻辑已经以Expression<Func<DateTime, string>>的实例的形式传递给我 - 说:

Expression<Func<DateTime, string>> formattingExpression = dt => dt.ToShortDateString();

我知道表达式树的之外我可以调用

formattingExpression.Compile()(new DateTime(2003, 2, 1)) 

评估表达式 - 但问题是我希望评估并在表达式树中分配 - 允许我在表达式树中对结果执行其他逻辑。

到目前为止,我所提出的任何内容似乎都没有 - 这几乎可以肯定是对表达树如何工作的误解。任何帮助非常感谢!

2 个答案:

答案 0 :(得分:3)

所以,如果我理解正确,你想创建一个lambda(表达式),它使用你传递的函数并做一些额外的工作。所以你基本上只想在表达式中使用这个函数。

此时,请允许我建议您甚至不使用表达式。您可以创建一个带有Func<DateTime, string>参数的函数,并使用它来处理某些内容。但是如果你真的需要表达某些东西,我会尝试解释如何构建一个。

对于这个例子,我将创建这个函数:

string MonthAndDayToString (int month, int day)
{
    return "'" + formattingFunction(new DateTime(2013, month, day)) + "'"
}

如您所见,我将创建一个Func<int, int, string>,然后创建DateTime对象并将其传递给函数,然后进一步更改结果。

Func<DateTime, string> formatting = dt => (...) // as above

// define parameters for the lambda expression
ParameterExpression monthParam = Expression.Parameter(typeof(int));
ParameterExpression dayParam = Expression.Parameter(typeof(int));

// look up DateTime constructor
ConstructorInfo ci = typeof(DateTime).GetConstructor(new Type[] { typeof(int), typeof(int), typeof(int) });

// look up string.Concat
MethodInfo concat = typeof(string).GetMethod("Concat", new Type[] { typeof(string), typeof(string), typeof(string) });

// inner call: formatting(new DateTime(2013, month, day))
var call = Expression.Call(formatting.Method, Expression.New(ci, Expression.Constant(2013), monthParam, dayParam));

// concat: "'" + call + "'"
var expr = Expression.Call(concat, Expression.Constant("'"), call, Expression.Constant("'"));

// create the final lambda: (int, int) => expr
var lambda = Expression.Lambda<Func<int, int, string>>(expr, new ParameterExpression[] { monthParam, dayParam });

// compile and execute
Func<int, int, string> func = lambda.Compile();
Console.WriteLine(func(2, 1)); // '01.02.2013 Hello!'
Console.WriteLine(func(11, 26)); // '26.11.2013 Hello!'

在看了Alex的回答之后,似乎我误解了你的问题,试图解决你正在做的事情。但是将它改变为你实际想做的事情并不是完全不同的:

Func<DateTime, string> formatting = dt => dt.ToShortDateString();

ParameterExpression param = Expression.Parameter(typeof(DateTime));
MethodInfo concat = typeof(string).GetMethod("Concat", new Type[] { typeof(string), typeof(string), typeof(string) });

var call = Expression.Call(formatting.Method, param);
var expr = Expression.Call(concat, Expression.Constant("'"), call, Expression.Constant(" Hello!'"));
var lambda = Expression.Lambda<Func<DateTime, string>>(expr, new ParameterExpression[] { param });

Func<DateTime, string> func = lambda.Compile();
Console.WriteLine(func(new DateTime(2013, 02, 01)));
Console.WriteLine(func(new DateTime(2013, 11, 26)));

但我仍然认为采用Func<DateTime, string>DateTime参数的正常函数将更容易维护。因此,除非你确实需要表达式,否则请避免使用它们。


为什么我仍然认为你真的不需要表达式。考虑这个例子:

private Func<DateTime, string> formatting = dt => dt.ToShortDateString();
private Func<DateTime, string> formattingLogic = null;

public Func<DateTime, string> FormattingLogic
{
    get
    {
        if (formattingLogic == null)
        {
            // some results from reflection
            string word = "Hello";
            string quote = "'";

            formattingLogic = dt =>
            {
                StringBuilder str = new StringBuilder(quote);
                str.Append(formatting(dt));

                if (!string.IsNullOrWhiteSpace(word))
                    str.Append(" ").Append(word);

                str.Append(quote);
                return str.ToString();
            };
        }

        return formattingLogic;
    }
}

void Main()
{
    Console.WriteLine(FormattingLogic(new DateTime(2013, 02, 01))); // '01.02.2013 Hello'
    Console.WriteLine(FormattingLogic(new DateTime(2013, 11, 26))); // '26.11.2013 Hello'
}

正如您所看到的,我只是在构建格式逻辑函数时,懒惰地还没有设置它。那是反射运行以获得您在函数中某处使用的某些值。由于函数是作为lambda函数创建的,因此我们在lambda函数中使用本地作用域中的变量会自动捕获并保持可用。

现在当然你也可以将它创建为一个表达式而不是存储已编译的函数,但我认为这样做更具可读性和可维护性。

答案 1 :(得分:1)

您可以使用:

Func<Func<DateTime,string>, DateTime, string> requiredLambda = (f, dt) =>
{
    var formattedDate = f.Invoke(dt);

    /**
    * The logic is not important here - what is important is that I 
    * am using the result of the executed lambda expression.
    * */
    var builder = new StringBuilder();
    builder.Append(formattedDate);
    builder.Append(" Hello!");
    return builder.ToString();
};

然后你有输入表达式:

Expression<Func<DateTime, string>> formattingExpression = 
    dt => dt.ToShortDateString();

结果:

var result = requiredLambda
    .Invoke(formattingExpression.Compile(), new DateTime(2003, 2, 1));

// 1.2.2003 Hello!