Compunnel interview question

Left Join in LINQ on multiple field.

Interview Answer

Anonymous

9 Aug 2017

from a in Employees join b in Department on new {id=a.id, pin=a.pin} equals new{id=b.id, pin=b.pin}

2