How do I include a child of a child entitiy?
Ie, Jobs have Quotes which have QuoteItems
var job = db.Jobs .Where(x => x.JobID == id)
This did the trick for me as @flindeberg said here . Just added checking if there are children in each parent item in the list
List companies = dbCtx.Companies.Where(x=>x.CompanyBranches.Count > 0) .Include(c => c.CompanyBranches) .Include("CompanyBranches.Address") .ToList();