# File lib/mongo_mapper/plugins/associations/many_documents_proxy.rb, line 33
        def build(attrs={})
          doc = klass.new(attrs)
          apply_scope(doc)
          yield doc if block_given?
          @target ||= [] unless loaded?
          @target << doc
          doc
        end