Possible Duplicate:
Entity Framework vs LINQ to SQL
What is the difference between linq to entities & linq to sql?
Why linq to entities came into picture?
Possible Duplicate:
Entity Framework vs LINQ to SQL
What is the difference between linq to entities & linq to sql?
Why linq to entities came into picture?
linq to sql is being discontinued.
linq to entities is MS's new thing and will be replacing their linq to sql stuff.
Linq to SQL is for direct queries using SQL Server, regardless of using Entity Framework.
Linq to Entities is Linq used while using Microsoft's Entity Framework, regardless of db server.