instance method
find_nth_with_limit
Ruby on Rails 4.2.9
Since v4.1.16Signature
find_nth_with_limit(offset, limit)
No documentation comment.
Parameters
-
offsetreq -
limitreq
Source
# File activerecord/lib/active_record/relation/finder_methods.rb, line 492
def find_nth_with_limit(offset, limit)
relation = if order_values.empty? && primary_key
order(arel_table[primary_key].asc)
else
self
end
relation = relation.offset(offset) unless offset.zero?
relation.limit(limit).to_a
end
Defined in activerecord/lib/active_record/relation/finder_methods.rb line 492
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::FinderMethods