Как преобразовать выражение LINQ, когда у вас нет одного из параметров, когда вы его определяете - PullRequest
0 голосов
/ 08 июля 2010

Я пытаюсь встроить в приложение более общую функциональность запросов.Что я хотел бы сделать, так это определить объекты, которые с помощью выражения предиката могут применить его к iqueryable со значением, которое будет передано позже.

Я считаю, что приведенный ниже код должен продемонстрировать то, что я пытаюсьсделать достаточно хорошо, чтобы понять проблему.Пожалуйста, дайте мне знать, если вы хотите получить более подробную информацию!

Спасибо!

//in practice the value of this would be set in object constructor likely
private Expression<Func<Contact, string, bool>> FilterDefinition = (c, val) => c.CompanyName.Contains(val);

//this needs to filter the contacts using the FilterDefinition and the filterValue. Filterval needs to become the string parameter
private IQueryable<Contact> ApplyFilter(IQueryable<Contact> contacts, string filterValue)
{
     //this method is what I do know know how to contruct.
     // I need to take the FilterDefinition expression and create a new expression that would be the result if 'filtervalue' had been passed into it when it was created.
     //ie the result would be (if 'mycompany' was the value of filterValue) an expression of
     //  c => c.CompanyName.Contains("mycompany")
     Expression<Func<Contact, bool>> usableFilter = InjectParametersIntoCriteria(FilterDefinition, "SomeCompanyName");

     //which I could use the results of to filter my full results.
     return contacts.Where(usableFilter);
}

Ответы [ 2 ]

0 голосов
/ 08 июля 2010

Поместите следующий код в ваше тело ApplyFilter:

 var f = FilterDefinition.Compile();
 return contacts.Where(x => f(x, filterValue));
0 голосов
/ 08 июля 2010

Вы ищете что-то подобное?

private Func<string, Expression<Func<Contact, bool>>> FilterDefinition =
    val => c => c.CompanyName.Contains(val);

private IQueryable<Contact> ApplyFilter(
    IQueryable<Contact> contacts, string filterValue)
{
    Expression<Func<Contact, bool>> usableFilter = FilterDefinition(filterValue);

    return contacts.Where(usableFilter);
}

См .: Карри

...