モデルのコレクションを他の配列で置き換える
適応バージョン
- 4.0.2
- 4.1.8
- 4.2.1
- 4.2.7
- 4.2.9
- 5.0.0.1
- 5.1.7
- 5.2.3
- 6.0.2.1
- 7.0.0
説明
モデルのコレクションを他の配列で置き換える
使い方
モデルのコレクション.replace(他の配列)
例
person.pets
#=> [<Pet id: 1, name: "Gorby", group: "cats", person_id: 1>]
other_pets = [Pet.new(name: 'Puff', group: 'celebrities')]
person.pets.replace(other_pets)
person.pets
#=> [<Pet id: 2, name: "Puff", group: "celebrities", person_id: 1>]