namespace lojaComEntity { class Program { static void Maind(string[] args) { EntidadesContext contexto = new EntidadesContext();
Venda venda = contexto.Vendas.Include(v => v.ProdutoVenda).ThenInclude( pv => pv.Produto).FirstOrDefault(v => v.ID == 1);
}
}
}