Left Join with Entity Framework

Posted by sanfra1983 on Stack Overflow See other posts from Stack Overflow or by sanfra1983
Published on 2010-05-15T14:18:52Z Indexed on 2010/05/15 14:24 UTC
Read the original article Hit count: 140

Filed under:

hi, someone can tell me how to do this query in EF1: select a.idAnimali, a.titolo, a.commenti, a.ordine, a.idcatanimali, table1.nomefoto FROM tabanimali as a LEFT JOIN (SELECT idanimali, nomefoto tabfotoanimali FROM LIMIT 1) AS Table1 On a.idAnimali = table1.idanimali WHERE a.idcatanimali = idcatanimale

Thanks

© Stack Overflow or respective owner

Related posts about entity-framework