나는 머리를 들으려고 노력하고 inverse_of
있고 그것을 얻지 못한다.
생성 된 SQL은 어떤 모습입니까?
않습니다 inverse_of
와 함께 사용하는 경우 옵션은 같은 동작을 나타냅니다 :has_many
, :belongs_to
그리고 :has_many_and_belongs_to
?
이것이 기본적인 질문이라면 죄송합니다.
이 예를 보았습니다.
class Player < ActiveRecord::Base
has_many :cards, :inverse_of => :player
end
class Card < ActiveRecord::Base
belongs_to :player, :inverse_of => :cards
end