У меня есть базовая настройка:
class Foo < ActiveRecord::Base
self.primary_key = 'foo_id'
has_and_belongs_to_many :bars
end
class Bar < ActiveRecord::Base
self.primary_key = :bar_id
has_and_belongs_to_many :foos
end
Теперь я могу видеть все бары, связанные с foos, используя Foo.first.bars
или Bar.first.foos
, и это работает, как и ожидалось.
Где яЯ в тупике, как сделать что-то вроде этого:
foo_rows = Foo.all
=> (all those rows)
bar_rows = Bar.all
=> (all those rows)
foo_rows.first.bars.find { |bar| bar.bar_id == 1 }.some_col
=> "The value from the database"
bar_rows.find { |bar| bar.bar_id == 1 }.some_col = 'a new value'
=> "a new value"
foo_rows.first.bars.find { |bar| bar.bar_id == 1 }.some_col
=> "a new value"
Но вместо этого в последней строке написано "The value from the database"
Как мне добиться желаемого поведения?