Я пытаюсь использовать шаблон спецификации, реализованный в виде выражения Linq, чтобы поставщики Linq могли проанализировать его для создания эффективных запросов к базе данных.
Это дает основную идею.
Я с трудом пытаюсь заставить его работать с родительским / дочерним запросом
class Parent
{
public int Foo;
public IList<Child> Children = new List<Child>();
}
class Child
{
public int Bar;
}
class Program
{
static void Main(string[] args)
{
IQueryable<Parent> qry = GetQry(); //initialised
//This works but duplicates the IsBigBar() logic
//Included to show what I am trying to query on
var parentsWithBigChildBars =
from parents in qry
where parents.Children.Any(child => child.Bar > 10)
select parents;
var parentsWithBigChildBars2 =
from parents in qry
where parents.Children.Any( ?? ) //but how do i access my IsBigBar() expression from here?
select parents;
}
//I want to re-use it to pull parents back!
public Expression<Func<Child, bool>> IsBigBar()
{
return child => child.Bar > 10;
}
//I'f i use this as the Any() delegate, it compiles & runs but not an expression so evaluated client side
public Func<Child, bool> IsBigBar2()
{
return child => child.Bar > 10;
}
}