I agree with Bevan, you definitely, *totally* misunderstand LINQ in that LINQ is a C# language construct while LINQ-to-SQL is a specific library that allows C# LINQ to be translated to SQL statements. However, I think that the choice between LINQ to SQL, LINQ to Entities and LINQ to [insert 3rd Party ORM] here provides a perfectly healthy eco-system of data access layer methodologies that a software developer can choose from. LINQ to SQL can be used for the simplest projects, or at least projects wherein your class representation very, very closely resembles the database tables. LINQ to EF can be used for more complex system. Third party providers like NHibernate, LLBLGen and even Subsonic (not sure if they're going to offer LINQ providers) will definitely make the competition better and more interesting.