Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Model.all遅延読み込みを使用する代替手段はありますか? likeまたはメソッドArrayの代わりに return があることに気付きました。ActiveRecord::Relationwhereorder
Model.all
Array
ActiveRecord::Relation
where
order
scopedを返す which を使用できますActiveRecord::Relation
scoped
Model.scoped
注: Rails 4 では、このscopedメソッドは廃止されました。代わりに、allwhich を返すActiveRecord::Relation.
all