tags:

views:

39

answers:

2

var products = Product.GetPaged(1, 20);

error:

'ROW_NUMBER' ....

+3  A: 

I don't think Subsonic supports paging for SQL Server 2000 (but I could be wrong). You'd need SQL Server 2005 or 2008.

Philippe Leybaert
+3  A: 

I'm guessing Subsonic uses a CTE or the ROWNUMBER() syntax. These are not supported in SQL2000

John Nolan