Flowdock
method

replace_common_records_in_memory

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: CollectionAssociation
replace_common_records_in_memory(new_target, original_target) 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/collection_association.rb, line 422
        def replace_common_records_in_memory(new_target, original_target)
          common_records = intersection(new_target, original_target)
          common_records.each do |record|
            skip_callbacks = true
            replace_on_target(record, skip_callbacks, replace: true)
          end
        end
Register or log in to add new notes.