Given a simple embedded relationship with an extension like this:
class D
include Mongoid::Document
embeds_many :es do
def m
#...
end
end
end
class E
include Mongoid::Document
embedded_in :d
end
You can say things like this:
d = D.find(id)
d.es.m
Inside the extension's m
method, how do access the specific d
that we're working with?
I'm answering this myself for future reference. If anyone has an official and documented way of doing this, please let me know.
After an hour or so of Googling and reading (and re-reading) the Mongoid documentation, I turned to the Mongoid source code. A bit of searching and guesswork lead me to
@base
and its accessor methodbase
:and then you can say this:
base
is documented but the documentation is only there because it is defined usingattr_reader :base
and documentation generated fromattr_reader
calls isn't terribly useful.base
also works withhas_many
associations.How did I figure this out? The documentation on extensions mentions
@target
in an example:@target
isn't what we're looking for,@target
is the array of embedded documents itself but we want what that array is inside of. A bit of grepping about for@target
led me to@base
(and the correspondingattr_reader :base
calls) and a quick experiment verified thatbase
is what I was looking for.