MongoCollectionFindOneAsTDocument Method |
Returns one document in this collection as a TDocument.
Namespace: MongoDB.DriverAssembly: MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.3.0
Syntax public virtual TDocument FindOneAs<TDocument>()
Public Overridable Function FindOneAs(Of TDocument) As TDocument
abstract FindOneAs : unit -> 'TDocument
override FindOneAs : unit -> 'TDocument
Type Parameters
- TDocument
- The type to deserialize the documents as.
Return Value
Type:
TDocumentA TDocument (or null if not found).
See Also