Question

I would like to create a more structured approach to loading the needed entity-tree:

I need a serious amount of data, so I'm doing this using type-safe Includes (just a normal Include but with Lambda's) as shown here.

As I said, I need a lot of data, basically a whole entity tree under 1 parent item.

Now, I could do this doing something like:

context.House
    .Include(x => x.Doors)
    .Include(x => x.Doors.FirstOrDefault().Joint)
    .Include(x => x.Doors.FirstOrDefault().Joint.FirstOrDefault().JointCategory)
    .Include(x => x.Doors.FirstOrDefault().Joint.FirstOrDefault().JointCategory.JointType)
    .Include(x => x.Windows)
    // ... same thing
    .Include(x => x.Roof)
    // ... same thing

As you can see, this line filled with includes can get quite huge. This is in fact a very simplified sample of the actual code (which doesn't include houses btw)

So what I would like to do is creating methods, responsible for its branch in the tree. Where the method can accept the object query and include the child, and in its turn, call the "child-loader methods". Also, the parent shouldn't matter, as long as it has a property with the type of the child.

This probably does not make much sense so:

public void LoadHouse(int id)
{
    // ...
    ObjectQuery<House> query = context.House;

    // and now?
    LoadDoors(query, x => x.Door);

}

public void LoadDoors<T>(ObjectQuery<T> query, ..?..)
{
    // ... ?

    LoadJoints(...)


}

And so on. But I can't really get my head around it... There's a missing link between the incoming query and calling the child methods.

Has anyone done something like this? Or could anyone give me some pointers?

Was it helpful?

Solution

Try something like this instead:

query = LoadDoors(query, x => x.Door);

Where LoadX returns the result of calling Include.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top