Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Maybe I don't know how to ask/search for this particular thing, but basically I want to create a few associated models when I create the parent object... say I have the following situation:

I have a Recipe which has_many Ingredient models... is there a way to make them all at once, say this is part of my seed task for example:

Recipe.create({
  :title => 'apple pie',
  :description => 'just apple pie',
  :ingredients => {
    [0] => {:title => 'apples'},
    [1] => {:title => 'sugar'},
    [2] => {:title => 'pie crust'}
  }
})

Or like am I totally crazy? There must be some sort of way to do this similarly, without creating the parent model, then all the children... etc, etc.

Thanks again SO, and happy new year.

share|improve this question

1 Answer

up vote 5 down vote accepted

Quite close. See http://apidock.com/rails/v3.0.0/ActiveRecord/NestedAttributes/ClassMethods

Recipe.create({
  :title => 'apple pie',
  :description => 'just apple pie',
  :ingredients_attributes => [
    { :title => 'apples' },
    { :title => 'sugar' },
    { :title => 'pie crust' }
  ]
})

Note that you need to put "accepts_nested_attributes_for :ingredients" to your Recipe model.

share|improve this answer
Oh hey... look at that, thanks man! I didn't realize it was this simple, whats wrong with me! thanks again. – Joseph Silvashy Dec 31 '10 at 7:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.