3
I asked this question in another forum, but the content of the discussion went another way so I decided to open this topic. Without running away from 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?
Put entities in question!
– novic