Click or drag to resize

FilterDefinitionBuilderTDocumentOfTypeTField, TDerived Method (ExpressionFuncTDocument, TField)

Creates an OfType filter that matches documents with a field of a derived type.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.6.0+Branch.origin/v2.6.x.Sha.593796a7b35dc59243383bcc684de296a5468f2e
Syntax
public FilterDefinition<TDocument> OfType<TField, TDerived>(
	Expression<Func<TDocument, TField>> field
)
where TDerived : TField

Parameters

field
Type: System.Linq.ExpressionsExpressionFuncTDocument, TField
The field.

Type Parameters

TField
The type of the field.
TDerived
The type of the matching derived field value.

Return Value

Type: FilterDefinitionTDocument
An OfType filter.
See Also