Join tables using LINQ

Table1.Join(Table2, x => x.Table1Column, y => y.Table2Column, (x, y) => x).ToList();