SQL Server 2008 vs 2005 Linq integration - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T05:55:43Zhttp://stackoverflow.com/feeds/question/15395http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/15395/sql-server-2008-vs-2005-linq-integration2SQL Server 2008 vs 2005 Linq integrationPhil Bachmann2008-08-18T23:50:25Z2008-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#154310Answer by Darren Kopp for SQL Server 2008 vs 2005 Linq integrationDarren Kopp2008-08-19T00:30:57Z2008-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#154410Answer by Nick Berardi for SQL Server 2008 vs 2005 Linq integrationNick Berardi2008-08-19T00:45:58Z2008-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#1532731Answer by David B for SQL Server 2008 vs 2005 Linq integrationDavid B2008-09-30T14:25:13Z2008-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&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#1534080Answer by David B for SQL Server 2008 vs 2005 Linq integrationDavid B2008-09-30T14:53:57Z2008-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>