QueryTDocumentSizeTValue 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.20.0+ee01960089f28ea1b501690df5fc9f6318a70242
Syntax public static IMongoQuery Size<TValue>(
Expression<Func<TDocument, IEnumerable<TValue>>> memberExpression,
int size
)
Public Shared Function Size(Of TValue) (
memberExpression As Expression(Of Func(Of TDocument, IEnumerable(Of TValue))),
size As Integer
) As IMongoQuery
static 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