我正在努力如何在 Mongoid 中找到一个扩展的协会所有者。AFAIK 它是 ActiveRecords 中的 proxy_association.owner。
class Something
field :some_field
has_many :whatevers, extend: ExtraStuff
end
module ExtraStuff
def recent
# I need "some_field" here, but there's no "proxy_association"
end
end