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?