Work on EF 4 C #. The challenge is to connect. sql syntax
Select a.Code, b.Name from DepartmentMaster a Join DepartmentDetail b on isnull( a.ID,0) =isnull( b.ID,0)
Note: a.ID, b.ID Both values ββare null
Want the syntax above the Linq syntax. The syntax syntax is not working for me
Var r=from a in DepartmentMaster Join b in DepartmentDetail on a.ID equals b.ID Select a.Code,b.Name
Need help writing syntax sql isnull () of a comparable process in linq ef.
If you have any questions, please ask, thanks in advanced
source share