Я пытаюсь встроить в приложение более общую функциональность запросов.Что я хотел бы сделать, так это определить объекты, которые с помощью выражения предиката могут применить его к 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);
}