IMongoCollectionTDocumentOfTypeTDerivedDocument 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.6.0+Branch.origin/v2.6.x.Sha.593796a7b35dc59243383bcc684de296a5468f2e
Syntax IFilteredMongoCollection<TDerivedDocument> OfType<TDerivedDocument>()
where TDerivedDocument : TDocument
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.
See Also