I\'m trying to use the following LINQ to SQL in my code:
(from s in dc.Accounts join purchases in dc.Transactions on s.AccID equals purchases.Account in
Try to specify the same join key names e.g.
join pop in dc.POPTransactions on new { Key1 = s.ID, Key2 = syncNo } equals new {Key1 = pop.AccountID, Key2 = pop.SyncNo }