Guys, I have a hard time converting this below linq expression(left join implementation) to lambda expression (for learning).
var result = from g in groc
Here's the heuristic that I follow:
Favor LINQ expressions over lambdas when you have joins.
I think that lambdas with joins look messy and are difficult to read.