vote up 0 vote down star
2

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?

flag

78% accept rate

closed as exact duplicate by Mehrdad Afshari, Quintin Robinson, John Rasch, TStamper, marc_s Jun 1 at 16:27

2 Answers

vote up 0 vote down

linq to sql is being discontinued.

linq to entities is MS's new thing and will be replacing their linq to sql stuff.

link|flag
Hmm. Linq to Entities has nothing to do with Linq to SQL, except it uses the same Linq syntax. They're for completely different data access mechanisms. It may be more accurate to say that Microsoft is investing more in Entity Framework than Linq to SQL, but even that's not completely clear. – Mark A Johnson Jun 1 at 16:22
vote up 0 vote down

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.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.