I have been trying to include multiple navigation properties of previously included navigation property, but I have not found correct syntax for it yet. Entity relations are shown in the picture below:

Now, I want to load all the Cities, then all the Departments, then all the Employees and when I come to the Employee table I want to load Employee navigation properties: Projects (a collection of Project) as well as navigation properties Title and Country.
My code syntax is:
var model = dbContext.Cities.Include(c => c.Departments.Select(e => e.Employees.Select(p => p.Projects))).ToList();
In the code above the only Employee navigation property that is included is Projects (a list of Project, due to relation one to many). But how to include two other Employee navigation properties Title and Country?