How to impliment ActiveModel associations (tableless nested models)?

For example:

book has many chapters

With ActiveRecord I would create two models and assosiate them with has_many and belongs_to. But ActiveModel doesn't have such functionality. How can I implement this?

link|improve this question

63% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You simply can't do it that way. It is not active record.

You can check ActiveModel documentation (and source code) at :

https://github.com/rails/rails/tree/master/activemodel

I guess you have to do it old fashion way, using an array of chapters and a reference to the book in the chapters.

Hope this helps!

link|improve this answer
Thank you for your response, Dominic. I'm new to Ruby language, can you explain what you mean by saying "a reference to the book in the chapters"? – WHITECOLOR Jul 6 '11 at 9:37
Happy I helped! So : Your "chapter" class should have a "book" member which you would affect to the actual "book" that the "chapter" is in. In the "book" class, add an array of all the "chapters" that the book contains. – Dominic Goulet Jul 6 '11 at 14:49
Ok, i've got it =) – WHITECOLOR Jul 6 '11 at 20:32
feedback

With rails 2.3.x you can the activerecord-tableless gem. With that gem you can have associations and validations without a database.

Sadly enough it seems that the author only saw the value of the validation part which is now achievable i Rails3, so the gem is now longer maintained. He aparently overlooked the benefit of having tableless associations.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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