Dim customers As List(Of Customer) = New List(Of Customer)
For Each mbi In fordContracts
customers.Add(mbi.Customer)
Next
Is it possible to query fordContracts for customers? It is an IList(of mbi) and each mbi object has an EntityRef to a Customer object. I just wanted to know if there was a better way to achieve this using Linq.
Thanks.