-
Add the ability to append the offset using the following sql: OFFSET {0} ROWS FETCH NEXT {1} ROWS ONLY where {0} is the number of rows to skip and {1} is the number of results to return. |
Beta Was this translation helpful? Give feedback.
Answered by
maxtoroq
Jan 20, 2015
Replies: 1 comment
-
You can do it already: var query = SQL
.SELECT("*")
.FROM("Products")
.ORDER_BY("ProductID")
.OFFSET("{0} ROWS FETCH NEXT {1} ROWS ONLY", startIndex, pageSize); |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
maxtoroq
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can do it already: