MongoCollectionBaseTDocumentOfTypeTDerivedDocument Method |
Returns a filtered collection that appears to contain only documents of the derived type.
All operations using this filtered collection will automatically use discriminators as necessary.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.13.1-v2-13-x1+a7f8afe27855f38f4f72157d11ba2ae73895502e
Syntaxpublic abstract IFilteredMongoCollection<TDerivedDocument> OfType<TDerivedDocument>()
where TDerivedDocument : TDocument
Public MustOverride Function OfType(Of TDerivedDocument As TDocument) As IFilteredMongoCollection(Of TDerivedDocument)
abstract OfType : unit -> IFilteredMongoCollection<'TDerivedDocument> when 'TDerivedDocument : 'TDocument
Type Parameters
- TDerivedDocument
- The type of the derived document.
Return Value
Type:
IFilteredMongoCollectionTDerivedDocumentA filtered collection.
Implements
IMongoCollectionTDocumentOfTypeTDerivedDocument
See Also