Inactive Tutor answered 05/28/21
Assuming you already have a linq2sql models called Dealer & DealerContacts, the correct syntax would be:
var dealerContacts = from d in Dealer
join dc in DealerContact on d.DealerID equals dc.DealerID
select new {
dc
};
you must use the equals keyword for this to work.