c# Programming Glossary: programid
Convert SQL to Linq left join with null http://stackoverflow.com/questions/9171063/convert-sql-to-linq-left-join-with-null How can I convert properly this SQL to linq select t1.ProgramID from Program t1 LEFT JOIN ProgramLocation t2 ON t1.ProgramID.. from Program t1 LEFT JOIN ProgramLocation t2 ON t1.ProgramID t2.ProgramID where t2.ProgramID IS NULL I try that but it not.. Program t1 LEFT JOIN ProgramLocation t2 ON t1.ProgramID t2.ProgramID where t2.ProgramID IS NULL I try that but it not working var..
|