limit

open override fun limit(count: Int): T

Modifies this query to return only count results.


var limit: Int?

The stored value for a LIMIT clause in this query.


open override fun limit(n: Int, offset: Long): T

Deprecated

This function will be removed in future releases.

Replace with

limit(n).offset(offset)