Just like dynamic finder methods in rails, is there any way to have dynamic finder methods for associated models?
Consider the following models
class User
attr_accessible :name, :phone_no
has_many :notes
end
class Note
belongs_to :user
attr_acccessible :note
end
How can I call a dynamic finder of note attribute from the User object?