MongoDB.Bson.RawBsonDocument.Merge C# (CSharp) 메소드

Merge() 공개 메소드

Merges another document into this one. Existing elements are not overwritten.
public Merge ( BsonDocument document ) : BsonDocument
document BsonDocument The other document.
리턴 BsonDocument
        public override BsonDocument Merge(BsonDocument document)
        {
            throw new NotSupportedException("RawBsonDocument instances are immutable.");
        }

Same methods

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