I have table A, B , C, D, E, F with the relationship
A(parent) --> B ---> C (Part A)
A(parent) --> D --> E -- > F (Part B)
I'd refer the link below to get my answer but I am only able to get till E part B. I couldn't get until F
Click here!
Here is my code:
var query = db.tableA.Include(c => c.tableB.Select(b => b.tableC))
.Include(d => d.tableD.Select(e => e.tableE));