Reputation: 415
So is it possible to set the starting point in MySQL LIMIT via the doctrine?
All I know is how to setMaxResults()...
Upvotes: 0
Views: 195
Reputation: 446
You should use Query::setFirstResult($offset). See more here.
Query::setFirstResult($offset)
Upvotes: 1