Compunnel Interview Question

Left Join in LINQ on multiple field.

Interview Answer

Anonymous

Aug 9, 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