Which versions of SQL Server does LINQ to SQL support? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T23:48:28Z http://stackoverflow.com/feeds/question/452050 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/452050/which-versions-of-sql-server-does-linq-to-sql-support 2 Which versions of SQL Server does LINQ to SQL support? Nick 2009-01-16T21:17:01Z 2009-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#452055 1 Answer by Mehrdad Afshari for Which versions of SQL Server does LINQ to SQL support? Mehrdad Afshari 2009-01-16T21:19:19Z 2009-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#452061 5 Answer by Mark Brittingham for Which versions of SQL Server does LINQ to SQL support? Mark Brittingham 2009-01-16T21:21:17Z 2009-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>