vote up 8 vote down star
4

I have a method that accepts an Expression<Func<T, bool>> as a parameter. I would like to use it as a predicate in the List.Find() method, but I can't seem to convert it to a Predicate which List takes. Do you know a simple way to do this?

public IList<T> Find<T>(Expression<Func<T, bool>> expression) where T : class, new()
{
    var list = GetList<T>();

    var predicate = [what goes here to convert expression?];

    return list.Find(predicate);
}

Update

Combining answers from tvanfosson and 280Z28, I am now using this:

public IList<T> Find<T>(Expression<Func<T, bool>> expression) where T : class, new()
{
    var list = GetList<T>();

    return list.Where(expression.Compile()).ToList();
}
flag

41% accept rate

3 Answers

vote up 12 vote down check
Func<T, bool> func = expression.Compile();
Predicate<T> pred = t => func(t);

Edit: per the comments we have a better answer for the second line:

Predicate<T> pred = func.Invoke;
link|flag
Perfect! Thanks! – Lance Fisher Aug 1 at 23:58
1  
Or: pred = func.Invoke; – Barry Kelly Aug 1 at 23:59
Yeah, func.Invoke looks better. – Lance Fisher Aug 2 at 0:05
@Barry: Thanks, learn something new every day :) – 280Z28 Aug 2 at 4:47
vote up 10 vote down

I'm not seeing the need for this method. Just use Where().

 var sublist = list.Where( expression.Compile() ).ToList();

Or even better, define the expression as a lambda inline.

 var sublist = list.Where( l => l.ID == id ).ToList();
link|flag
1  
Heh, true. That's what I get for narrow reading. – 280Z28 Aug 1 at 23:23
Using Where() instead of Find() is what I needed to do. However your first example needs to use expression.Compile() instead of just expression. Thanks. – Lance Fisher Aug 1 at 23:56
Updated. I neglected the fact that Where takes a Func<T,bool>. – tvanfosson Aug 2 at 12:16
vote up 4 vote down

Another options which hasn't been mentioned:

Func<T, bool> func = expression.Compile();
Predicate<T> predicate = new Predicate<T>(func);

This generates the same IL as

Func<T, bool> func = expression.Compile();
Predicate<T> predicate = func.Invoke;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.