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
One Best example
Table Names : TBL_Emp and TBL_Dep
TBL_Emp
TBL_Dep
var result = from emp in TBL_Emp join dep in TBL_Dep on emp.id=dep.id select new { emp.Name; emp.Address dep.Department_Name } foreach(char item in result) { // to do}