I have a simple LINQ lambda join query but I want to add a 3rd join with a where clause. How do I go about doing that?
Here\'s my single join query:
var
Try something like this...
var myList = ({from a in Companies join b in Sectors on a.Sector_code equals b.Sector_code join c in Distribution on b.distribution_code equals a.distribution_code select new {...});