Here is the situation.
user embed_one profile
profile belongs_to city
I have populated a city table with
id as Integer
name as String
Now I am doing
user.update_attributes(:profile_attributes{:city_id=>"5"})simulating a browser form submission. Then I check user.profile I see that city_id is stored as string. This renders my user.profile.city to give nil.
I am wondering what is the right thing to do here. Should I let my city id be string or BSON object? Or should I try to intercept update_attributes to make mongoid store city_id as integer? The reason I am using Integer as id for city is because I thought searching through Integer is faster than searching through string. And also I have state and city tables and I want to match the ids in a predictable manner so I don't want to use BSON randome key.