SQL Server 2008 vs 2005 Linq integration - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T05:55:43Z http://stackoverflow.com/feeds/question/15395 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/15395/sql-server-2008-vs-2005-linq-integration 2 SQL Server 2008 vs 2005 Linq integration Phil Bachmann 2008-08-18T23:50:25Z 2008-10-14T05:41:43Z <p>Linq To SQL or Entity framework both integrate nicely with SQL Server 2005.</p> <p>The SQL Server 2008 spec sheet promises even better integration - but I can't see it.</p> <p>What are some examples of what you can do Linq-wise when talking to a 2008 server that you can't when talking to SQL Server 2005?</p> http://stackoverflow.com/questions/15395/sql-server-2008-vs-2005-linq-integration/15431#15431 0 Answer by Darren Kopp for SQL Server 2008 vs 2005 Linq integration Darren Kopp 2008-08-19T00:30:57Z 2008-08-19T00:30:57Z <p>it has full support for the new data types. lol. beyond that you got me, other than possibilities of optimised queries (like the merge command, etc).</p> http://stackoverflow.com/questions/15395/sql-server-2008-vs-2005-linq-integration/15441#15441 0 Answer by Nick Berardi for SQL Server 2008 vs 2005 Linq integration Nick Berardi 2008-08-19T00:45:58Z 2008-08-19T00:45:58Z <p>I am guessing most of it has to do on the server anyways. They probably optimized the query execution as for differences I don't know except for the new types.</p> http://stackoverflow.com/questions/15395/sql-server-2008-vs-2005-linq-integration/153273#153273 1 Answer by David B for SQL Server 2008 vs 2005 Linq integration David B 2008-09-30T14:25:13Z 2008-09-30T14:57:13Z <p>There is a problem of paging over a joined set that SQL 2005 mis-interprets.</p> <pre><code>var orders = ( from c in Customers from o in c.Orders select new {c, o} ).Skip(10).Take(10).ToList(); </code></pre> <p>LINQ generates a ROW_Number against the joined set. SQL2005 generates a bad plan from that code. Here's a link to the <a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=3091519&amp;SiteID=1" rel="nofollow">discussion</a>.</p> <p>Edit#2: I'd like to clarify that I don't know that SQL2008 solves this problem. I'm just hopeful.</p> http://stackoverflow.com/questions/15395/sql-server-2008-vs-2005-linq-integration/153408#153408 0 Answer by David B for SQL Server 2008 vs 2005 Linq integration David B 2008-09-30T14:53:57Z 2008-09-30T14:53:57Z <p>This <a href="http://www.microsoft.com/sqlserver/2008/en/us/linq.aspx" rel="nofollow">marketing link</a> claims</p> <p>"Write data access code directly against a Microsoft SQL Server database, using LINQ to SQL."</p> <p>Which is basically untrue.</p> <p>Linq To SQL is query comprehension translated into expression trees translated into SQL, optimized by the query optimizer and then run against SQL Server database. "directly" feh.</p>