8
Rails에서 관련 레코드가없는 레코드를 찾으려면
간단한 연관성을 고려하십시오 ... class Person has_many :friends end class Friend belongs_to :person end ARel 및 / 또는 meta_where에 친구가없는 모든 사람을 얻는 가장 깨끗한 방법은 무엇입니까? 그리고 has_many : through 버전은 어떻습니까? class Person has_many :contacts has_many :friends, :through => :contacts, :uniq => true end class Friend has_many :contacts …