6

Possible Duplicate:
Entity Framework vs LINQ to SQL

what is the difference between linq to sql class and entity framework and what kind of situation linq to sql should use and when entity framework will be the best option.

Community
  • 1
  • 1
Thomas
  • 33,544
  • 126
  • 357
  • 626
  • The question is already answered here - http://stackoverflow.com/questions/3549638/difference-between-linq-to-sql-and-entity-framework, http://stackoverflow.com/questions/8676/entity-framework-vs-linq-to-sql – Saurabh Gokhale Feb 22 '11 at 18:39

1 Answers1

6

Check out this link for a quick comparison. For me linq to sql is a quicker way to get a small application up and running and the entity framework is more for large more complex applications that you can take time to build a big foundation for.

nickmoriarty
  • 1,253
  • 19
  • 21