I have a method that accepts an Expression> as a parameter. I would like to use it as a predicate in the List.Find() method, but I can\'t
Expression>
Another options which hasn't been mentioned:
Func func = expression.Compile(); Predicate predicate = new Predicate(func);
This generates the same IL as
Func func = expression.Compile(); Predicate predicate = func.Invoke;