Entity Framework vs LINQ to SQL - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T10:04:26Z http://stackoverflow.com/feeds/question/8676 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/8676/entity-framework-vs-linq-to-sql 42 Entity Framework vs LINQ to SQL Chris Roberts 2008-08-12T11:04:11Z 2009-11-03T21:55:37Z <p>Now that .NET v3.5 SP1 has been released (along with VS2008 SP1), we now have access to the .NET entity framework.</p> <p>My question is this. When trying to decide between using the Entity Framework and LINQ to SQL as an ORM, what's the difference?</p> <p>The way I understand it, the Entity Framework (when used with LINQ to Entities) is a 'big brother' to LINQ to SQL? If this is the case - what advantages does it have? What can it do that LINQ to SQL can't do on its own?</p> http://stackoverflow.com/questions/8676/entity-framework-vs-linq-to-sql/8677#8677 -4 Answer by Lars Mæhlum for Entity Framework vs LINQ to SQL Lars Mæhlum 2008-08-12T11:06:48Z 2008-08-12T11:06:48Z <p>First match on google when search for the title of this Question:<br /> <a href="http://dotnetaddict.dotnetdevelopersjournal.com/adoef_vs_linqsql.htm" rel="nofollow"><a href="http://dotnetaddict.dotnetdevelopersjournal.com/adoef_vs_linqsql.htm" rel="nofollow">http://dotnetaddict.dotnetdevelopersjournal.com/adoef_vs_linqsql.htm</a></a></p> http://stackoverflow.com/questions/8676/entity-framework-vs-linq-to-sql/8680#8680 -4 Answer by Chris Roberts for Entity Framework vs LINQ to SQL Chris Roberts 2008-08-12T11:11:22Z 2008-08-12T11:11:22Z <p>That'll teach me to be lazy! Thanks Lars!</p> http://stackoverflow.com/questions/8676/entity-framework-vs-linq-to-sql/8686#8686 14 Answer by KiwiBastard for Entity Framework vs LINQ to SQL KiwiBastard 2008-08-12T11:15:24Z 2008-08-12T11:15:24Z <p>There are a number of obvious differences outlined in that article @lars posted, but short answer is:</p> <ul> <li>L2S is tightly coupled - object property to specific field of database or more correctly object mapping to a specific database schema</li> <li>L2S will only work with SQL Server (as far as I know)</li> <li>EF allows mapping a single class to multiple tables </li> <li>EF will handle M-M relationships</li> <li>EF will have ability to target any ADO.NET data provider</li> </ul> <p>The original premise was L2S is for Rapid Development, and EF for more "enterprisey" n-tier applications, but that is selling L2S a little short.</p> http://stackoverflow.com/questions/8676/entity-framework-vs-linq-to-sql/9004#9004 8 Answer by Brad Tutterow for Entity Framework vs LINQ to SQL Brad Tutterow 2008-08-12T16:00:26Z 2009-05-23T00:14:03Z <p>I think the quick and dirty answer is that</p> <ul> <li>LINQ to SQL is the quick-and-easy way to do it. This means you will get going quicker, and deliver quicker if you are working on something smaller.</li> <li>Entity Framework is the all-out, no-holds-barred way to do it. This means you will take more time up-front, develop slower, and have more flexibility if you are working on something larger.</li> </ul> http://stackoverflow.com/questions/8676/entity-framework-vs-linq-to-sql/80772#80772 1 Answer by vintana for Entity Framework vs LINQ to SQL vintana 2008-09-17T07:22:11Z 2008-09-17T07:22:11Z <p>If your database is straightforward and simple, LINQ to SQL will do. If you need logical/abstracted entities on top of your tables, then go for Entity Framework.</p> http://stackoverflow.com/questions/8676/entity-framework-vs-linq-to-sql/110153#110153 40 Answer by Kris for Entity Framework vs LINQ to SQL Kris 2008-09-21T03:22:59Z 2008-09-21T03:22:59Z <p>LINQ to SQL only supports 1 to 1 mapping of database tables, views, sprocs and functions available in Microsoft SQL Server. It's a great API to use for quick data access construction to relatively well designed SQL Server databases. LINQ2SQL was first released with C# 3.0 and .Net Framework 3.5.</p> <p>LINQ to Entities (ADO.Net Entity Framework) is an ORM (Object Relational Mapper) API which allows for a broad definition of object domain models and their relationships to many different ADO.Net data providers. As such, you can mix and match a number of different database vendors, application servers or protocols to design an aggregated mash-up of objects which are constructed from a variety of tables, sources, services, etc. ADO.Net Framework was released with the .Net Framework 3.5 SP1.</p> <p>This is a good introductory article on MSDN: <a href="http://msdn.microsoft.com/en-us/library/cc161164.aspx" rel="nofollow">Introducing LINQ to Relational Data</a></p> http://stackoverflow.com/questions/8676/entity-framework-vs-linq-to-sql/259058#259058 19 Answer by Zack Peterson for Entity Framework vs LINQ to SQL Zack Peterson 2008-11-03T15:53:25Z 2008-11-03T15:53:25Z <p><a href="http://www.infoq.com/news/2008/11/DLINQ-Future" rel="nofollow">Is LINQ to SQL Truly Dead?</a> by Jonathan Allen for InfoQ.com</p> <blockquote> <p>Matt Warren describes [LINQ to SQL] as something that "was never even supposed to exist." Essentially, it was just supposed to be stand-in to help them develop LINQ until the real ORM was ready.</p> <p>...</p> <p>The scale of Entity Framework caused it to miss the .NET 3.5/Visual Studio 2008 deadline. It was completed in time for the unfortunately named ".NET 3.5 Service Pack 1", which was more like a major release than a service pack.</p> <p>...</p> <p>Developers do not like [ADO.NET Entity Framework] because of the complexity.</p> <p>...</p> <p>as of .NET 4.0, LINQ to Entities will be the recommended data access solution for LINQ to relational scenarios.</p> </blockquote> http://stackoverflow.com/questions/8676/entity-framework-vs-linq-to-sql/309968#309968 4 Answer by TT for Entity Framework vs LINQ to SQL TT 2008-11-21T19:52:18Z 2008-11-21T19:52:18Z <p>My impression is that your database is pretty enourmous or very badly designed if Linq2Sql does not fit your needs. I have around 10 websites both larger and smaller all using Linq2Sql. I have looked and Entity framework many times but I cannot find a good reason for using it over Linq2Sql. That said I try to use my databases as model so I already have a 1 to 1 mapping between model and database. </p> <p>At my current job we have a database with 200+ tables. An old database with lots of bad solutions so there I could see the benefit of Entity Framework over Linq2Sql but still I would prefer to redesign the database since the database is the engine of the application and if the database is badly designed and slow then my application will also be slow. Using Entity framework on such a database seems like a quickfix to disguise the bad model but it could never disguise the bad performance you get from such a database.</p> http://stackoverflow.com/questions/8676/entity-framework-vs-linq-to-sql/348622#348622 11 Answer by Jiyosub for Entity Framework vs LINQ to SQL Jiyosub 2008-12-08T03:50:54Z 2008-12-08T03:50:54Z <p>My experience with Entity Framework has been less than stellar. First, you have to inherit from the EF base classes, so say good bye to POCOs. Your design will have to be around the EF. With LinqtoSQL I could use my existing business objects. Additionally, there is no lazy loading, you have to implement that yourself. There are some work arounds out there to use POCOs and lazy loading, but they exist IMHO because EF isn't ready yet. I plan to come back to it after 4.0</p> http://stackoverflow.com/questions/8676/entity-framework-vs-linq-to-sql/646239#646239 0 Answer by MRFerocius for Entity Framework vs LINQ to SQL MRFerocius 2009-03-14T16:53:31Z 2009-03-14T16:53:31Z <p>Hi everybody</p> <p>I think if you need to develop something quick with no Strange things in the middle, and you need the facility to have entities representing your tables:</p> <p>Linq2Sql can be a good allied, using it with LinQ unleashes a great developing timing.</p> <p>Regards!</p> http://stackoverflow.com/questions/8676/entity-framework-vs-linq-to-sql/764909#764909 0 Answer by John Dunagan for Entity Framework vs LINQ to SQL John Dunagan 2009-04-19T05:48:50Z 2009-04-19T05:48:50Z <p>Neither yet supports the unique SQL 2008 datatypes. The difference from my perspective is that Entity still has a chance to construct a model around my geographic datatype in some future release, and Linq to SQL, being abandoned, never will.</p> <p>Wonder what's up with nHibernate, or OpenAccess...</p> http://stackoverflow.com/questions/8676/entity-framework-vs-linq-to-sql/964602#964602 0 Answer by iceangel89 for Entity Framework vs LINQ to SQL iceangel89 2009-06-08T12:08:43Z 2009-06-08T12:08:43Z <p>i am getting the impression that Entity Framework is better practice to use and offers better functionality than LINQ2SQL </p>