Yes, LINQ to SQL works with SQL Sever 2000 with one exception, : you do need the ROW_NUMBER() support to for server-side paging support and this is only function, available only in SQL Server 2005/82005/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.
|
2 | Update to handle Mehrdad's commentary. | ||
|
|
||||
|
1 |
|
||
|
Yes, LINQ to SQL works with SQL Sever 2000 with one exception, you do need ROW_NUMBER() support to for server-side paging support and this is only available in SQL Server 2005/8. |
||||
