MongoDB.Driver.Collection.Insert C# (CSharp) Метод

Insert() публичный Метод

public Insert ( Document doc ) : void
doc Document
Результат void
        public void Insert(Document doc)
        {
            Document[] docs = new Document[]{doc,};
            this.Insert(docs);
        }

Same methods

Collection::Insert ( Document doc, bool safemode ) : void
Collection::Insert ( IEnumerable docs ) : void
Collection::Insert ( IEnumerable docs, bool safemode ) : void