Hello,
I have an EF model which includes a list of planes, and each plane has a list of passengers. I would like to write a linq query that from the resulting list of planes, I can do this:

foreach(Plane t_plane in t_queryPlanes) {
Console.writeLine(t_plane.Passengers.Count());
}

I know I do an individual load on each passenger list, but that would be unnecessary since I don't need the passenger object, just the count.