Func<T, bool> expr = x => x.Prop != 1;
somelist = somelist.Where(expr);
到目前为止一切顺利。但是我想这样否定expr
:
somelist = somelist.Where(!expr);
导致编译错误:Cannot apply ! operator to operand of type Func<T, bool>
。
我是否必须为此创建另一个表达式变量?
Func<T, bool> expr2 = x => x.Prop == 1;
答案 0 :(得分:50)
Func<T, bool> expr = x => x.Prop != 1;
Func<T, bool> negativeExpr = value => !expr(value);
或
somelist = somelist.Where(value => !expr(value));
使用表达式树时,以下方法可以解决问题:
Expression<Func<T, bool>> expr = x => x.Prop != 1;
var negativeExpr = Expression.Lambda<Func<T, bool>>(
Expression.Not(expr.Body),
expr.Parameters);
somelist = somelist.Where(negativeExpr);
为了让您的生活更轻松,您可以创建以下扩展方法:
public static Func<T, bool> Not<T>(
this Func<T, bool> predicate)
{
return value => !predicate(value);
}
public static Expression<Func<T, bool>> Not<T>(
this Expression<Func<T, bool>> expr)
{
return Expression.Lambda<Func<T, bool>>(
Expression.Not(expr.Body),
expr.Parameters);
}
现在你可以这样做:
somelist = somelist.Where(expr.Not());
答案 1 :(得分:18)
我只是把它作为一个愚蠢的答案扔出去。要明确一点:我不会这样做,我不建议任何人这样做。 :)
我有点想看看是否有可能获得somelist.Where(!expr)
语法或类似的东西。
我成功了,我讨厌自己。
var expr = N.egatable<MyClass>(x => x.Prop != 1);
somelist = someList.Where(!expr);
N.egatable
只是一个小的便利语法助手,很大程度上是不必要的(编辑:我想要以避免必须明确定义MyClass
或以某种方式使对象实例化包装器隐藏,但不能完全到达那里,并认为可能有人会有更好的主意):
public static class N
{
public static Negator<T> egatable<T>(Func<T, bool> underlyingFunction)
{
return new Negator<T>(underlyingFunction);
}
}
Negator<T>
是真正的“神奇”发生的地方:
public class Negator<T>
{
private Func<T, bool> UnderlyingFunction;
public Negator(Func<T, bool> underlyingFunction)
{
this.UnderlyingFunction = underlyingFunction;
}
public static implicit operator Func<T, bool>(Negator<T> neg)
{
return v => neg.UnderlyingFunction(v);
}
public static Negator<T> operator !(Negator<T> neg)
{
return new Negator<T>(v => !neg.UnderlyingFunction(v));
}
}
首先!
运算符重载执行函数否定(就像在this answer中一样),然后隐式转换运算符Func<T, bool>
允许它传递到Where
扩展名方法
也许非常愚蠢的是你可以像这样来回翻转它:
somelist = someList.Where(!!expr);
somelist = someList.Where(!!!expr);
somelist = someList.Where(!!!!expr);
somelist = someList.Where(!!!!!expr);
somelist = someList.Where(!!!!!!expr); //oh my what
再次......请不要这样做。 :)绝对坚持正确/理智的做事方式,如史蒂文的答案。
编辑:这是一个使用表达式的实现,它在语法用法方面的工作方式完全相同。不确定它是否“正确”,并且没有针对实体框架进行测试:
public class ExpressionNegator<T>
{
private Expression<Func<T, bool>> UnderlyingExpression;
public ExpressionNegator(Expression<Func<T, bool>> underlyingExpression)
{
this.UnderlyingExpression = underlyingExpression;
}
public static implicit operator Func<T, bool>(ExpressionNegator<T> neg)
{
return neg.UnderlyingExpression.Compile();
}
public static implicit operator Expression<Func<T, bool>>(ExpressionNegator<T> neg)
{
return neg.UnderlyingExpression;
}
public static ExpressionNegator<T> operator !(ExpressionNegator<T> neg)
{
var originalExpression = neg.UnderlyingExpression;
Expression<Func<T, bool>> negatedExpression = originalExpression.Update(
Expression.Not(originalExpression.Body),
originalExpression.Parameters);
return new ExpressionNegator<T>(negatedExpression);
}
}