views:

570

answers:

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?

A: 

linq to sql is being discontinued.

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

rball
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
A: 

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.

Mark A Johnson