How to sort Rails AR.find by number of objects in a has_many relationship

前端 未结 7 1975
名媛妹妹
名媛妹妹 2020-12-24 09:32

How can I write an AR find query to have the results ordered by the number of records in a has_many association?

class User < ActiveRecord::Base
  has_man         


        
相关标签:
7条回答
  • 2020-12-24 10:11

    Counter cache will help, but you'll need an extra column in the db.

    0 讨论(0)
提交回复
热议问题