0

如何在没有任何条件的情况下获取模型的 ActiveRecord::Relation 对象?因为我可以写

User.where # without any args

,但这看起来令人困惑

4

1 回答 1

3

User.scoped会做的。where像, order,等所有方法limit都委托给scoped. 直接调用它会给你裸露的Relation.

于 2010-07-13T21:11:05.247 回答