According to the docs, setting :autosave => false on an association should NOT save those associations when you save the parent. This doesn't appear to work for me. I just created a vanilla Rails 3.0.8 app and here's what I get:
class Foo < ActiveRecord::Base
has_many :bars, :autosave => false
accepts_nested_attributes_for :bars
end
class Bar < ActiveRecord::Base
belongs_to :foo
end
f = Foo.new :name => 'blah', :bars_attributes => [{:name => 'lah'},{:name => 'lkjd'}]
f.save
f.bars
=> [#<Bar id: 1, name: "lah", foo_id: 1, created_at: "2011-06-20 20:51:02", updated_at: "2011-06-20 20:51:02">, #<Bar id: 2, name: "lkjd", foo_id: 1, created_at: "2011-06-20 20:51:02", updated_at: "2011-06-20 20:51:02">]
What?? Why did it save the bars?
I feel like I'm taking crazy pills!! What am I missing?
Update: It appears as if accepts_nested_attributes_for automatically saves children, even if they're not built using the nested attributes feature. It think this is a bug.
f.bars.first.new_record?after you run your given code? – Luke Jun 23 '11 at 21:45f.barsabove. It's obvious thatnew_record?would return false as it's been persisted with an ID. Again this only happens whenaccepts_nested_attributes_foris used – brad Jun 29 '11 at 18:33