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
Granted, 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.
That being said, it will be totally sad for Microsoft to abandon LINQ to SQL, especially since it does have a good following -- even StackOverflow is built on it.
