I'm very new to LINQ, trying to learn right now the basics of querying, I need to convert this SQL to LINQ because of Entity Framework.
SELECT Desktop, Notebook,Gmail, Telefone, Smartphone, Rede, Outros
FROM Atributos, Gestors, Funcionario, CentroCusto
WHERE Funcionario.Id = Atributos.Funcionario_Id
AND Funcionario.CentroCusto_Id = CentroCusto.Id
AND CentroCusto.Gestor_Id = Gestors.Id
AND Gestors.Email = 'john@email.com'