I am giving the Dapper ORM a try. I am able to query data from a table using the code below:

Dim comments As List(Of Comment)
Using conn = New SqlConnection(ConnectionString)
    conn.Open()
    comments = conn.Query(Of Comment)("SELECT * from comments where userid = @commentid", New With {.userid= 1})
End Using

Return View(comments)

I am interested to learn how to do paging/sorting using Dapper. EF has "skip" and "take" to help with this. I understand that a micro ORM does not have this built in but would like to know the best way to accomplish this.

link|improve this question

43% accept rate
feedback

1 Answer

up vote 13 down vote accepted

If you want to do skip and take with Dapper, you do it with T-SQL.

SELECT *
FROM
(
SELECT tbl.*, ROW_NUMBER() OVER (ORDER BY ID) rownum
FROM comments as tbl
) seq
 WHERE seq.rownum BETWEEN @x AND @y
 AND userid = @commentid
 ORDER BY seq.rownum
link|improve this answer
1  
yes, also keep in mind this is db dependent, oracle and mysql have limit and offset, denali has offset and so on. – Sam Saffron May 7 '11 at 11:08
The where should be inside the inner query, no? And you should probably have an explicit order by rownum on the final query (cc @Sam) – Marc Gravell May 7 '11 at 11:28
@Marc yes you would need an order by at then end .. the where may or may not be needed in the inner query, sometimes you can add a TOP @y to the inner query to get a perf boost – Sam Saffron May 7 '11 at 11:30
2  
@Sam you mean TOP (@y) :) – Marc Gravell May 7 '11 at 11:33
:) true true @Marc – Sam Saffron May 7 '11 at 11:33
feedback

Your Answer

 
or
required, but never shown

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