如何手动构建将始终返回true的Expression?

时间:2016-04-21 14:51:17

标签: c# linq lambda expression-trees

我尝试创建Expression,但失败了。

我想构建像Expression<Func<typeof(type), bool>> expression = _ => true;

这样的东西

我的尝试:

private static Expression GetTrueExpression(Type type)
{
    LabelTarget returnTarget = Expression.Label(typeof(bool));
    ParameterExpression parameter = Expression.Parameter(type, "x");

    var resultExpression = 
      Expression.Return(returnTarget, Expression.Constant(true), typeof(bool));

    var delegateType = typeof(Func<,>).MakeGenericType(type, typeof(bool));

    return Expression.Lambda(delegateType, resultExpression, parameter); ;
}

使用方法:

var predicate = Expression.Lambda(GetTrueExpression(typeof(bool))).Compile();

但我收到错误:Cannot jump to undefined label ''

3 个答案:

答案 0 :(得分:11)

就这么简单:

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
      datagrdSnippets.Columns(0).ReadOnly = True
      datagrdSnippets.Columns(1).ReadOnly = True
      datagrdSnippets.Columns(2).ReadOnly = True
End Sub

答案 1 :(得分:0)

有一个很好的工具可以帮助你构建表达式树http://tryroslyn.azurewebsites.net/

我已经在@ Ivan的GetTrueExpression

示例中添加了一个linq

答案 2 :(得分:-1)

我不得不面对同样的问题,并获得了这段代码。 看起来很简单。

Expression.IsTrue(Expression.Constant(true))