I asked this question in another forum, but the content of the discussion followed another way so I decided to open this topic. Without skipping the subject, how do I perform this SQL query:
select p.RA, p.Nome, p.Modulo, a.Descricao
from inscricao as i, participante as p, Atividade as a
where i.ParticipanteId = p.ParticipanteId and
i.AtividadeId = a.AtividadeId order by p.Modulo
In a query using Entity?