smwikipedia
smwikipedia

Reputation: 64173

Relationship between LINQ to SQL and Entity Framework

My understanding so far is :

Entity Framework make it easier to use LINQ to SQL. It generate the entity types for us automatically.

I just started to learn LINQ. So the above statement is very likely to be wrong. Could you share your thought?

Upvotes: 0

Views: 83

Answers (1)

Erik Funkenbusch
Erik Funkenbusch

Reputation: 93424

There is no relationship between Entity Framework and Linq to Sql. They're two totally different technologies.

Entity Framework is more advanced, and requires a bit more knowledge to get up to speed than Linq to SQL.

Linq to SQL is no longer being updated by Microsoft, and their forward direction is Entity Framework. however Linq to SQL is still supported.

Upvotes: 1

Related Questions