모듈: Mongoid::Association::Builders

확장자:
ActiveSupport::Concern
포함 항목:
Mongoid::Association
다음에 정의됨:
lib/mongoid/association/ 빌더.rb

개요

이 모듈은 일대일 연관 관계에 사용되는 빌드 및 생성 메서드를 정의하는 역할을 합니다.

예시:

생성되는 메서드.


class Person
  include Mongoid::Document
  embeds_one :name
end

# The following methods get created:
person.build_name({ :first_name => "Durran" })
person.create_name({ :first_name => "Durran" })