ActiveRecord::Relation 是很基本的东西,可以理解为 ActiveRecord 的 SQL query builder。直到类似 all, to_a 这样的方法被调用时,才会真正向数据库发查询请求。
A Relation is just a builder for a SQL query and its methods do not operate on actual data."
可以看看这个 cast: http://railscasts.com/episodes/239-activerecord-relation-walkthrough
mark 一下,虽然没怎么看明白。收藏了慢慢学习。