I am looking for a good way to implement paging in ormlite and I found another question, which has this snippet:
var data = db.Select(predicate).Ski
Found the answer in ormlite's tests. Essentially we could use SqlExpressionVisitor's Limit() like this:
var result = db.Select( q => q.Where(predicate).Limit(skip:5, rows:10 ) );