Ok, I have tri-leveled entities with the following hierarchy: Course -> Module -> Chapter
Here was the original EF LINQ statement:
Course course = db
You can also try
db.Courses.Include("Modules.Chapters").Single(c => c.Id == id);