Flowdock
method

select_limited_ids_list

Importance_0
v1.0.0 - Show latest stable - 0 notes - Class: ActiveRecord::Associations::ClassMethods
select_limited_ids_list(options) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.