Я использую Rails 3 с Mongoid.
У меня есть два документа:
class MyUser
include Mongoid::Document
field ......
references_many :statuses, :class_name => "MyStatus"
end
class MyStatus
include Mongoid::Document
field ......
referenced_in :user, :class_name => "MyUser"
end
Проблема в том, что я могу получить пользователя любого данного статуса, но я не могу получитьсписок статусов от пользователя!
т.е..
status = MyStatus.first
status.user # the output is correct here
user = MyUser.first
user.statuses # this one outputs [] instead of the list of statuses...
Скажите, пожалуйста, что я сделал не так?Я всего несколько дней с Монго ......