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
Inner join two tables in linq C#
var result = from q1 in table1 join q2 in table2 on q1.Customer_Id equals q2.Customer_Id select new { q1.Name, q1.Mobile, q2.Purchase, q2.Dates }