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
var data=(from t in db.your tableName(t1) join s in db.yourothertablename(t2) on t1.fieldname equals t2.feldname (where condtion)).tolist();