我有 2 个模型:
class Section < ActiveRecord::Base
has_and_belongs_to_many :posts
end
和
class Post < ActiveRecord::Base
has_and_belongs_to_many :sections
end
我需要选择至少有一个相关帖子的所有部分,并按相关帖子的数量对这些部分进行排序。谁能帮我?
我有 2 个模型:
class Section < ActiveRecord::Base
has_and_belongs_to_many :posts
end
和
class Post < ActiveRecord::Base
has_and_belongs_to_many :sections
end
我需要选择至少有一个相关帖子的所有部分,并按相关帖子的数量对这些部分进行排序。谁能帮我?