I\'m writing a LINQ to SQL statement, and I\'m after the standard syntax for a normal inner join with an ON clause in C#.
ON
How do you represent the follo
try instead this,
var dealer = from d in Dealer join dc in DealerContact on d.DealerID equals dc.DealerID select d;