method
select_limited_ids_list
v1.0.0 -
Show latest stable
- Class:
ActiveRecord::Associations::ClassMethods
select_limited_ids_list(options)private
No documentation available.
# File activerecord/lib/active_record/associations.rb, line 969
def select_limited_ids_list(options)
connection.select_values(
construct_finder_sql_for_association_limiting(options),
"#{name} Load IDs For Limited Eager Loading"
).collect { |id| connection.quote(id) }.join(", ")
end