@car.errors # => engine has no car! @car.engine.car # => nil
Since we validate_associated :engine, engine runs its own validations
and finds that validates_presence_of car is false, since car is nil.
Shouldn’t engine know the car that built it?
Flinn, not necessarily. In this case we talk about associated in-
memory object which doesn’t have id yet. In my opinion
validates_presence_of :engine_id should behave the old way - check for
id - since we explicitly ask for it.
A key wouldn’t be possible because you’d need to save a possibly
invalid record first to be able to do that.
Let me note that I don’t necessarily have a need for
validate_presence_of to work in this case, but rather the ability of
having the parent object around when doing stuff in the child model.
Well, if the child cannot exist without parent, it seems natural to
have such validation in the child - must have parent. (In addition to
your reasoning.)
Ideally we’d just punt on those cases and require users to explicitly
mark associations as inverses with a declaration like
has_many :foos, :conditions … :inverse_of=>:bar
FWIW, that’s basically how Sequel handles it, with the :reciprocal
option, though instead of punting by default if multiple associations
match, it picks the first matching association.
FWIW, that’s basically how Sequel handles it, with the :reciprocal
option, though instead of punting by default if multiple associations
match, it picks the first matching association.
The first matching association sounds like it could be prone to
surprises but we could see how it plays out. Fundamentally though
having something that works with explicit declarations only would be a
good start. How we mark the associations is kinda orthogonal to the
associations’ behaviour which is the real challenge.
I had a closely related question today, which was why this code does N
+1 queries?
order.order_items.each {|oi| oi.order}
Why must each order item do a query to find its order? It seems like
Rails should recognize the reciprocal nature of the associations.
Yes, this is called bi-directional associations and would be a
welcome (if non-trivial) addition in 3.0.
Incidentally it actually only does 1 query, the rest are cache hits,
so at least your database is safe. However it still wastes memory and
can lead to some weirdness and should be fixed.
The has_many :foos, belongs_to :bar case is very easy, but there are
some common corner cases which we’ll have to look at. For example
what’s the inverse of belongs_to :bar when we have the following
associations to choose from:
Wouldn’t all of these problems be solved by an identity map? Wouldn’t that
be a better solution than trying to hack this on the existing system?
Yes, bi-directional associations are a localised implementation of an
identity map. As has been discussed several times before, an identity
map would be a welcome addition to AR, but would be a lot of work
given the functionality we support (:select etc) and the strange ways
it can all interact.
Bi-Directional associations would give 99% of the return with much
less of the complication.
Wouldn’t all of these problems be solved by an identity map? Wouldn’t that
be a better solution than trying to hack this on the existing system?
Correct me if I’m wrong, but an identity map does nothing to help with
unsaved records. For example, if I build children on a parent record,
I should be able to have validates_presence_of :parent in the child
model - but can’t.
Of course, this already works fine without an identity map in the
update case, where the parent ID has already been set and so the
record can be found, but create is the hard one. So an identity map
doesn’t really solve many problems, though there are potentially
efficiency gains.
I wrote a “reverse” association finder in ActiveScaffold a couple
years ago. Works pretty well, I think:
Also, I’ve grown very accustomed to writing bi-directional association
validations in my home-grown validation library. Granted, I’ve always
had to set the “reverse” association manually which looks a little
shoddy in my controllers, but the key to making it all work was:
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.