Displaying 1 result from an estimated 1 matches for "quantity_on_hand".
2011 Oct 20
2
Access other model attributes directly with has_one, belongs_to ?
...attributes and all other
attributes are different. So I wanted to extract these 5 out into one
common table and use has_one, belongs_to to knit it back together. So
now there are 3 tables with 1 having the shared properties, we''ll call
this table C.
Table A
id
dollar_amount
Table B
id
quantity_on_hand
Table C
id
version
My question is, I want to access attributes from table C like they are
in table A, such as:
@a = a.new
a.version
and NOT
a.c.version
Is my only option to use method_missing?
Anyone got any ideas?
--
Posted via http://www.ruby-forum.com/.
--
You received this message bec...