Hi, I would be glad is there is anyone can point/teach me the correct way of iterate a collection in LINQ. I attached part of my coding for reference. I wish to find out the location(s) of an Employee who can also happen to be a Supervisor. My model contains a Many-to-Many relationship between Location and Employee. Thanks in advance
Dim someDataSource = From _e As Employee In _context.Employees
Where _e.Locations = location <---- _e.Locations return a collection
Select _e.FullName, _e.ID
View Complete Post