I have the classes:
profissional
{
int id;
int idUnidade;
string nome;
}
unidade
{
int id;
string nome;
}
profissionalUnidade
{
string profissionalNome;
string unidadeNome;
}
I'm doing a query like this:
listaProfissionalUnidade = (from p in profissionais
join u in unidades on p.idUnidade = u.id
select new profissionalUnidade()
{
profissionalNome = p.nome,
unidadeNome = u.nome
}).ToList();
So, he lists me all the professionals that have some bond with a unit. However, I also need to be returned to me, professionals who have no links.
How do I do it?