MongoDB.Bson.MaterializedOnDemandBsonDocument.Merge C# (CSharp) Method

Merge() public method

Merges another document into this one. Existing elements are not overwritten.
public Merge ( BsonDocument document ) : BsonDocument
document BsonDocument The other document.
return BsonDocument
        public override BsonDocument Merge(BsonDocument document)
        {
            EnsureIsMaterialized();
            return base.Merge(document);
        }

Same methods

MaterializedOnDemandBsonDocument::Merge ( BsonDocument document, bool overwriteExistingElements ) : BsonDocument