Sélectionnez Toutes les colonnes de toutes les tables de jointure + linq rejoindre

Comment sélectionner toutes les colonnes de tables de jointure à l'aide de linq

Sql:

select CTRL_RUN_JOB.*, CTRL_DATA_STREAM.*
 from CTRL_RUN_JOB inner join CTRL_DATA_STREAM
      on CTRL_RUN_JOB.DATA_STREAM_ID= CTRL_DATA_STREAM.DATA_STREAM_ID

Linq:

from CTLJCRJOB in CTRL_RUN_JOBs 
join CTLRFDSTM in CTRL_DATA_STREAMs 
on CTLJCRJOB.DATA_STREAM_ID equals CTLRFDSTM.DATA_STREAM_ID
select  new {
         CTLJCRJOB.*  //???
        ,CTLRFDSTM.*  //???
}

Grâce

InformationsquelleAutor Sreedhar | 2009-11-04