| QueryBuilderTDocumentGTTValue Method (ExpressionFuncTDocument, IEnumerableTValue, TValue) | 
 
            Tests that any of the values in the named array element is greater than some value (see $lt).
            
 
    Namespace: 
   MongoDB.Driver.Builders
    Assembly:
   MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.6.0+Branch.origin/v2.6.x.Sha.593796a7b35dc59243383bcc684de296a5468f2e
 Syntax
Syntaxpublic IMongoQuery GT<TValue>(
	Expression<Func<TDocument, IEnumerable<TValue>>> memberExpression,
	TValue value
)
Public Function GT(Of TValue) ( 
	memberExpression As Expression(Of Func(Of TDocument, IEnumerable(Of TValue))),
	value As TValue
) As IMongoQuery
member GT : 
        memberExpression : Expression<Func<'TDocument, IEnumerable<'TValue>>> * 
        value : 'TValue -> IMongoQuery 
Parameters
- memberExpression
- Type: System.Linq.ExpressionsExpressionFuncTDocument, IEnumerableTValue
 The member expression representing the element to test.
- value
- Type: TValue
 The value to compare to.
Type Parameters
- TValue
- The type of the value.
Return Value
Type: 
IMongoQueryAn IMongoQuery.
 See Also
See Also