拉特說,我有一些關係: @active_posts = Post.where(active: true).limit(3) # returns 3 active posts, but there are much more then 3
然後我修改了一些這種關係的成員: @active_posts.first.update active: false
@active_posts.size #
我想爲我的ActiveRecord Services這樣的查詢中的Rails: SELECT *
FROM "services" AS s
WHERE /* part using 's' alias */
一般情況下我寫的只是Service.where(/* where part */),但我需要把我的別名。 我試圖運行ActiveRecord::Base.connection.execu