1
I have the following classes: Client, Contact, Phone, Campaign and Campanhacliente.
Where Campanhacliente, has a campaign, has a Customer ( who has a phone list and a contact list and who may have a phone list).
I can give a Select in Campanhacliente searching: Campaign, Client, Customer Phone List, Contact List, but not the Contacts Phone List.
return banco.CampanhasClientes.Include(x=>x.Cliente).Where(x=>x.Campanha.Id == _campanha.Id).ToList();