У меня есть следующая ассоциация
Class Person
include Mongoid::Document
embeds_many :employments
end
Class Employment
include Mongoid::Document
references_many :centres
end
class Centre
include Mongoid::Document
referenced_in :employment
end
Теперь, когда я попытался
Person.first.employments.first.centres.build
, это дало мне ошибки типа
NoMethodError: undefined method `centres' for #<Employment:0x000001023f38f8>
Я делаю что-то неправильно??
Или встроенный документ не может ссылаться на многие другие документы?