I have a jump table to relate the Customers and the contact, I want to load all contacts by a customer name. What is the best way to do that?
Dim Q = From Cust In EnData.Customers Where Cust.CustomerID = ID Select Cust
ContactRow = Q.FirstOrDefault.CustomerToContacts.??? here I'm stock...