With LINQ without problems. Now, how do I join
with two or more tables? Below the join
attempt I could not go through to the end. Two tables ( T_Acao
and T_ProximaAcao
). Field in join
is IDAcao
var resultadoAcao = (db.T_Acao
.Where(a => a.IDAcao == 7)
.Join(db.T_ProximaAcao, p => p.IDAcao )
);
How do I end this join?