Can someone help me translate this query into LINQ? I canβt find a good way to translate it, thanks!
SELECT C.id, C.id_old, C.cus_id, C.namefirst, C.title, CP.id as 'cus_phone_jct.id', CP.contact_id, CP.phone_id, CP.ext, P.id as 'cus_phone.id', P.phone, P.typ_id, P.status_id, P.donotcontact FROM cus_contact C LEFT OUTER JOIN cus_phone_jct CP ON C.id = CP.contact_id LEFT OUTER JOIN cus_phone P ON CP.phone_id = P.id WHERE C.cus_id = 4
source share