1

我有:

class ThingsCollection < ActiveRecord::Base
  has_and_belongs_to_many :things, uniq: true
end

class Thing < ActiveRecord::Base
  has_and_belongs_to_many :things_collections, uniq: true
end

我想得到Thing没有任何ThingsCollections(thing.things_colllection_ids.empty? == true)的s。我怎样才能通过 ActiveRecord & Squeel 做到这一点?(如果可能,不使用 SQL 查询)

4

0 回答 0