1
With LINQ no problem. Now, how do I make a join
with two or more tables? Below the attempt of the join
that I couldn’t go through with. Two tables(T_Acao
and T_ProximaAcao
). Field in join
is the IDAcao
var resultadoAcao = (db.T_Acao
.Where(a => a.IDAcao == 7)
.Join(db.T_ProximaAcao, p => p.IDAcao )
);
How do I finish this Join?
I ask you to please accept your answer so that the question no longer appears as "unanswered". Thank you!
– Filipe.Fonseca
I know, only the SOPT only releases to accept my answer after two days.
– pnet