我有:
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
没有任何ThingsCollection
s(thing.things_colllection_ids.empty? == true
)的s。我怎样才能通过 ActiveRecord & Squeel 做到这一点?(如果可能,不使用 SQL 查询)