Simple question: What is the difference between LINQ to Entities and the Entity Framework? Up until now, I thought that both were different names to describe the same query, but I'm starting to get the feeling that it's not.
Asked
Active
Viewed 999 times
3
-
Similar question here: http://stackoverflow.com/questions/3968138/entity-framework-vs-linq-to-entities-vs-linq-to-sql – robert jebakumar2 Sep 10 '13 at 05:49
2 Answers
1
The entity framework is an ORM. Linq to Entities adds LINQ support for the entity framework. So, AFAIK its a nice-to-have if you're using the entity framework.

Bryan Matthews
- 1,116
- 1
- 8
- 13
0
I guess that Linq To Entities would be the particular subset of Linq that is implemented by the Entity Framework.
The Entity Framework covers all of the entity stuff such as:
- Entity Designer
- ESQL
- L2E
- Etc...

TGnat
- 3,903
- 8
- 35
- 46