Click or drag to resize
MongoDatabase.GetCollection Method (String)
Gets a MongoCollection instance representing a collection on this database with a default document type of BsonDocument.

Namespace: MongoDB.Driver
Assembly: MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.3.0
Syntax
public virtual MongoCollection<BsonDocument> GetCollection(
	string collectionName
)

Parameters

collectionName
Type: System.String
The name of the collection.

Return Value

Type: MongoCollection<BsonDocument>
An instance of MongoCollection.
See Also