QueryBuilderTDocumentSizeTValue Method |
Tests that the size of the named array is equal to some value (see $size).
Namespace:
MongoDB.Driver.Builders
Assembly:
MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax public IMongoQuery Size<TValue>(
Expression<Func<TDocument, IEnumerable<TValue>>> memberExpression,
int size
)
Public Function Size(Of TValue) (
memberExpression As Expression(Of Func(Of TDocument, IEnumerable(Of TValue))),
size As Integer
) As IMongoQuery
member Size :
memberExpression : Expression<Func<'TDocument, IEnumerable<'TValue>>> *
size : int -> IMongoQuery
Parameters
- memberExpression
- Type: System.Linq.ExpressionsExpressionFuncTDocument, IEnumerableTValue
The member expression representing the element to test. - size
- Type: SystemInt32
The size to compare to.
Type Parameters
- TValue
- The type of the enumerable member values.
Return Value
Type:
IMongoQueryAn IMongoQuery.
See Also