«meta-where» 태그된 질문

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 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.