Which versions of SQL Server does LINQ to SQL support? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T23:48:28Zhttp://stackoverflow.com/feeds/question/452050http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/452050/which-versions-of-sql-server-does-linq-to-sql-support2Which versions of SQL Server does LINQ to SQL support?Nick2009-01-16T21:17:01Z2009-01-16T21:32:20Z
<p>Can SQL Server 2000 be used as the database for LINQ to SQL?</p>
<p>Does LINQ to SQL rely on a specific version of Microsoft SQL Server?</p>
http://stackoverflow.com/questions/452050/which-versions-of-sql-server-does-linq-to-sql-support/452055#4520551Answer by Mehrdad Afshari for Which versions of SQL Server does LINQ to SQL support?Mehrdad Afshari2009-01-16T21:19:19Z2009-01-16T21:19:19Z<p>Yes, you can.</p>
<p>LINQ to SQL adapts the generated queries to work with 2000.</p>
http://stackoverflow.com/questions/452050/which-versions-of-sql-server-does-linq-to-sql-support/452061#4520615Answer by Mark Brittingham for Which versions of SQL Server does LINQ to SQL support?Mark Brittingham2009-01-16T21:21:17Z2009-01-16T21:32:20Z<p>Yes, LINQ to SQL works with SQL Sever 2000 with one exception: you do need the ROW_NUMBER() function, available only in SQL Server 2005/2008, to support efficient server-side paging. Without it, paging functions (as Mehrdad points out) are delivered using the classic Top N strategy - <em>very</em> inefficient as you page further and further through your dataset because you end up throwing out most of your selected records from the third page on.</p>