Using Linq Expressions as a Specification Template with Parent / Child Query

I am trying to use a specification template implemented as a Linq expression so that Linq providers can parse it to create efficient database queries.

This gives a basic idea.

It's hard for me to try to get it to work with parent / child request

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;
    }
}
+3
source share
1 answer

Do you want to:

    var predicate = IsBigBar();
    var parentsWithBigChildBars2 =
           from parents in qry
           where parents.Children.Any(predicate) 
           select parents;

Extra is varvery important. It prevents the query provider (to which it belongs qry) from trying to interpret, IsBigBar()and instead points it to the result of this method.

+1

Source: https://habr.com/ru/post/1752662/


All Articles