Hi all,
I have some "strange" behavior going on in one of my Rails apps.
I have two models: CustomerCategory and PaymentType. Both have a HABTM
relationship.
If I want to know the attributes of a PaymentType, I do
PaymentType.find(1).attributes. This nicely returns a hash with all the
attribute names and values (let's say {"name" => "mastercard"}).
The strange thing that happens however is that when I get the payment
type through a customer category, suddenly payment_type_id is added as
an attribute to the payment type object. So
CustomerCategory.find(1).payment_types[0].attributes returns
{"payment_type_id" => "1", "name" => "mastercard"}.
Is this a Rails feature or a bug?
Regards,
Wouter
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---