If I have 3 models:
Model Section
Model User
has_many :votes
Model Vote
belongs_to :user
and inside ModelSection
has_many :users
has_many :votes, :through => :users
How to get the Sections list ordered by votes quantity using the AR associations?
The most reasonable way to do this is to use a subquery written as raw SQL for ordering the result as follows…