method

associate_records_to_owner

associate_records_to_owner(owner, records)
private

No documentation available.

# File activerecord/lib/active_record/associations/preloader/association.rb, line 229
          def associate_records_to_owner(owner, records)
            return if loaded?(owner)

            association = owner.association(reflection.name)

            if reflection.collection?
              association.target = records
            else
              association.target = records.first
            end
          end