8
ต้องการค้นหาระเบียนที่ไม่มีระเบียนที่เกี่ยวข้องใน Rails
พิจารณาการเชื่อมโยงที่เรียบง่าย ... class Person has_many :friends end class Friend belongs_to :person end อะไรคือวิธีที่สะอาดที่สุดในการรับทุกคนที่ไม่มีเพื่อนใน AREL และ / หรือ meta_where จากนั้นมี has_many: ถึงเวอร์ชัน class Person has_many :contacts has_many :friends, :through => :contacts, :uniq => true end class Friend has_many :contacts has_many :people, :through => :contacts, :uniq => true end class Contact belongs_to …