| 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.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
 Syntax
Syntaxpublic 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
See Also