What is the difference between LINQ and Entity Framework?

Simple question: what is the difference between LINQ and Entity Framework? Until now, I thought they both have different names to describe the same thing, but I am starting to feel that they are not

+2


source to share


2 answers


An entity framework is an ORM. Linq to Entities adds LINQ support to the entity framework. So AFAIK its nice if you are using entity framework.



+1


source


My guess is that Linq To Entities will be a specific subset of Linq that Entity Framework implements.

Entity Framework covers all entity objects such as:



  • Entity constructor
  • ESQL
  • L2E
  • Etc ...
0


source







All Articles