method

records_for

records_for(ids)
private

No documentation available.

# File activerecord/lib/active_record/associations/preloader/association.rb, line 117
          def records_for(ids)
            scope.where(association_key_name => ids).load do |record|
              # Processing only the first owner
              # because the record is modified but not an owner
              owner = owners_by_key[convert_key(record[association_key_name])].first
              association = owner.association(reflection.name)
              association.set_inverse_instance(record)
            end
          end