Click or drag to resize
MongoCollectionBase<TDocument>.InsertOne Method
Inserts a single document.

Namespace: MongoDB.Driver
Assembly: MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.4.1
Syntax
public virtual void InsertOne(
	TDocument document,
	InsertOneOptions options = null,
	CancellationToken cancellationToken = null
)

Parameters

document
Type: TDocument
The document.
options (Optional)
Type: MongoDB.Driver.InsertOneOptions
The options.
cancellationToken (Optional)
Type: System.Threading.CancellationToken
The cancellation token.

Implements

IMongoCollection<TDocument>.InsertOne(TDocument, InsertOneOptions, CancellationToken)
See Also