如何手动构建将始终返回 true 的表达式

本文关键字:返回 true 表达式 何手动 构建 | 更新日期: 2024-11-04 16:28:49

我试图创建表达式,但失败了。

我想构建类似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 ''

如何手动构建将始终返回 true 的表达式

就这么简单:

private static Expression GetTrueExpression(Type type)
{
    return Expression.Lambda(Expression.Constant(true), Expression.Parameter(type, "_"));
}

我不得不面对同样的问题,并得到了这段代码。它似乎干净而简单。

Expression.IsTrue(Expression.Constant(true))