how to select all the columns from both query ( Join case) , see the example below :
var particiapants = from p in data.getAllParticipant() from l in dt.GetAll() where p.IdParticipant == l.IdParticipant select p , l ; ???
I want to display all the columns , and i dont want to do :
p.name , p.job .........