I have a table called payroll which has a field called payrollId. I also have a table called EmpMasterPayroll that has a field called payrollId. I want to collect all the records from payroll that are not present in EmpMasterPayroll.
In pure sql terms this can be done this way:
Select p.* from Payroll p left outer join EmpMasterPayroll e on e.payrollId = p.payrollId.
Can anyone write the LINQ to SQL translation of this. I have a data context called dcPayroll.
Thanks in advance,