Which is more flexible in regards to database changes, EF 4 or Linq to SQL

Posted by JBeckton on Stack Overflow See other posts from Stack Overflow or by JBeckton
Published on 2010-05-12T15:42:32Z Indexed on 2010/05/12 15:44 UTC
Read the original article Hit count: 198

Reading about both Linq to SQL and Entity Framework I have developed the impression that EF is more suitable for apps that get data from multiple data sources.

But as I am reading about MVC2 models I see an example where EF is more loosely coupled with your data model.

If I have to add or remove some columns from a table then what is involved in updating my model or DAL with each of these implementations?

© Stack Overflow or respective owner

Related posts about linq-to-sql

Related posts about entity-framework