Given a EF-Code First CTP5 entity layout like:
public class Person { ... }
which has a collection of:
public class Address {
For that you can use the Select method:
PersonQuery.Include(x => x.Addresses.Select(a => a.Mailbox));
You can find other examples in here and here.