模块:Mongoid::Association::Builders

扩展方式:
ActiveSupport::Concern
包含在:
Mongoid::Association
定义于:
lib/mongoid/association/ 构建者.rb

Overview

该模块负责定义一对一关联中使用的构建和创建方法。

例子:

创建的方法。


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" })