私はクラスを持っています:
class Technician < ActiveRecord::Base
scope :named, lambda {|name| where(["first_name LIKE ?", "%#{name}%"])}
end
Railsコンソールで次のクエリを実行すると:
technician = Technician.named("john")
technician.class => ActiveRecord::Relation and not Technician
クラス属性にアクセスしようとするとメソッドエラーが発生しないため、これは重要です。
technician.id => no method error
私は何が間違っているのですか?