Flowdock
method

select_limited_ids_list

Importance_0
v1.2.6 - Show latest stable - 0 notes - Class: ActiveRecord::Associations::ClassMethods
select_limited_ids_list(options, join_dependency) 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 1224
        def select_limited_ids_list(options, join_dependency)
          connection.select_all(
            construct_finder_sql_for_association_limiting(options, join_dependency),
            "#{name} Load IDs For Limited Eager Loading"
          ).collect { |row| connection.quote(row[primary_key]) }.join(", ")
        end
Register or log in to add new notes.