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.

I am using accept_nested_attributes to save records. I want to access ids of the child records created. e.g. params[:client] has subscriptions_attributes coming as nested_attributes from the form. Client has_many :subscriptions. When I'll call @client.save. It will save client as well as subscriptions. I want to access the ids of the subscriptions inserted.

One solution I have is to collect subscription_ids before saving the records and then collecting again after save and then (after_ids - before_ids)

Is there any rails way or fool proof method to do this?

share|improve this question

1 Answer

up vote 2 down vote accepted

This can be one alternative: You can save the time just before saving the client and then retrieve the records created after that time. E.g. before_create_time = Time.now

Then, after saving

inserted_subscriptions = @client.subscriptions.where('created_at > ?', before_create_time)

share|improve this answer
Thanks... reduces a query atleast...:) – Pravin Jun 28 '11 at 11:03

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.