join in LINQ to SQL and LINQ to Entities Considered Messy, Redundant
January 13, 2010
Author: Alf Christophersen
In this post I will demonstrate that use of the join keyword in LINQ to SQL and LINQ to Entities is nearly always wrong. LINQ queries which you write with the join keyword are harder to read and write than queries you write using associations, and they require knowledge of database metadata which is not required otherwise. This introduces the potential for errors and…