レールの動的ファインダーメソッドと同様に、関連するモデルに動的ファインダーメソッドを使用する方法はありますか?
次のモデルを検討してください
class User
attr_accessible :name, :phone_no
has_many :notes
end
class Note
belongs_to :user
attr_acccessible :note
end
Userオブジェクトからメモ属性の動的ファインダーを呼び出すにはどうすればよいですか?