---
class Child < Entity
  belongs_to :parent, :foreign_key => 'parent_id'
end

class Parent < Entity
end

class Entity < ActiveRecord::Base
end
---

p = Parent.find_by_name( "Michael" )

How do I find children of this parent, given that I have the identity
of the parent?
Can I do it without referring to parent entity attributes/values
directly ? Something like

Child.find :parent => p

Rails version is 2.1.0, if that matters.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to