MongoDatabaseBaseGetCollectionTDocument Method |
Gets a collection.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax public abstract IMongoCollection<TDocument> GetCollection<TDocument>(
string name,
MongoCollectionSettings settings = null
)
Public MustOverride Function GetCollection(Of TDocument) (
name As String,
Optional settings As MongoCollectionSettings = Nothing
) As IMongoCollection(Of TDocument)
abstract GetCollection :
name : string *
?settings : MongoCollectionSettings
(* Defaults:
let _settings = defaultArg settings null
*)
-> IMongoCollection<'TDocument>
Parameters
- name
- Type: SystemString
The name of the collection. - settings (Optional)
- Type: MongoDB.DriverMongoCollectionSettings
The settings.
Type Parameters
- TDocument
- The document type.
Return Value
Type:
IMongoCollectionTDocumentAn implementation of a collection.
Implements
IMongoDatabaseGetCollectionTDocument(String, MongoCollectionSettings)See Also