LINQ 2 SQL:Left outer join for my SQL statement

Posted by Shyju on Stack Overflow See other posts from Stack Overflow or by Shyju
Published on 2010-06-17T14:31:15Z Indexed on 2010/06/17 14:33 UTC
Read the original article Hit count: 210

Filed under:
|

Can any one tell me the LINQ 2 SQL version (in vb.net) of the below Left outer join query.I am trying to get all Employees with name "Shyju" and their address line 1 if it exist in the address table

SELECT E.EMPLOYEE_NAME,
       E.AGE,A.ADRESS_LINE1
          FROM EMPLOYEE_MASTER E
              LEFT OUTER JOIN 
          ADDRESS_MASTER A
                    ON E.ID=A.EMPLOYEE_ID
                    WHERE E.EMPLOYEE_NAME='Shyju'

Thanks in advance

© Stack Overflow or respective owner

Related posts about linq-to-sql

Related posts about left-join