EF 4 C# に取り組みます。 join の問題に直面します。SQL 構文
Select a.Code, b.Name from DepartmentMaster a
Join DepartmentDetail b on isnull( a.ID,0) =isnull( b.ID,0)
注: a.ID 、b.ID は両方とも nullable です
上記の構文をLinq構文に出力したい.Bellow構文が機能しない
Var r=from a in DepartmentMaster
Join b in DepartmentDetail on a.ID equals b.ID
Select a.Code,b.Name
linq ef で SQL 構文 isnull() に相当するプロセスを記述するには助けが必要です。
ご不明な点がございましたら、お尋ねください。