QueryBuilderTDocumentTypeTValue Method (ExpressionFuncTDocument, IEnumerableTValue, BsonType) |
Tests that any of the values in the named array element is equal to some type (see $type).
Namespace:
MongoDB.Driver.Builders
Assembly:
MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.9.0+32b058abcdf2c7e8d9dd3a676d207b31897eee2e
Syntaxpublic IMongoQuery Type<TValue>(
Expression<Func<TDocument, IEnumerable<TValue>>> memberExpression,
BsonType type
)
Public Function Type(Of TValue) (
memberExpression As Expression(Of Func(Of TDocument, IEnumerable(Of TValue))),
type As BsonType
) As IMongoQuery
member Type :
memberExpression : Expression<Func<'TDocument, IEnumerable<'TValue>>> *
type : BsonType -> IMongoQuery
Parameters
- memberExpression
- Type: System.Linq.ExpressionsExpressionFuncTDocument, IEnumerableTValue
The member expression representing the element to test. - type
- Type: MongoDB.BsonBsonType
The type to compare to.
Type Parameters
- TValue
- The type of the value.
Return Value
Type:
IMongoQueryAn IMongoQuery.
See Also