up vote 6 down vote favorite
share [g+] share [fb]

Can SQL Server 2000 be used as the database for LINQ to SQL?

Does LINQ to SQL rely on a specific version of Microsoft SQL Server?

link|improve this question

60% accept rate
feedback

3 Answers

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 - very 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.

link|improve this answer
It is also available in 2000 but it is less efficient. LINQ to SQL uses a nested SELECT TOP n statement for that case instead. – Mehrdad Afshari Jan 16 '09 at 21:25
Hi Mehrdad - good tip but you are right, that grows very inefficient very quickly as you page through the dataset! – Mark Brittingham Jan 16 '09 at 21:28
I've updated my answer to reflect your comments. – Mark Brittingham Jan 16 '09 at 21:32
But it's still much better than paging on the client side. – Mehrdad Afshari Jan 16 '09 at 21:33
There are also a few extra differences and tweaks such as varchar(max) not being supported on SQL 2000 too. – DamienG Nov 29 '10 at 5:41
feedback

Yes, you can.

LINQ to SQL adapts the generated queries to work with 2000.

link|improve this answer
I'd be happy to know the reason for downvote! – Mehrdad Afshari Jan 18 '09 at 21:31
Me too...the answer was basically correct so I upvoted you to get rid of the downvote. – Mark Brittingham Jan 22 '09 at 11:22
feedback

As of VS 2010, L2S for SQL Server 2000 is not supported under any scenario (although some third party tools add support back).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.