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?
|
2
|
What is the difference between linq to entities & linq to sql? Why linq to entities came into picture?
|
||
|
closed as exact duplicate by Mehrdad Afshari, Quintin Robinson, John Rasch, TStamper, marc_s Jun 1 at 16:27 |
|
|
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. |
||
|
|