7
Answers

select in Join experssion

radouane zili

radouane zili

7y
393
1

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 .........

Answers (7)