| QueryBuilderTDocumentGTETValue Method (ExpressionFuncTDocument, IEnumerableTValue, TValue) | 
 
            Tests that any of the values in the named array element is greater than or equal to some value (see $gte).
            
 
    Namespace: 
   MongoDB.Driver.Builders
    Assembly:
   MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.7.3+Branch.v2.7.x.Sha.2f1f2be13a23b8520cb9c2ee8439c022f9a03efe
 Syntax
Syntaxpublic IMongoQuery GTE<TValue>(
	Expression<Func<TDocument, IEnumerable<TValue>>> memberExpression,
	TValue value
)
Public Function GTE(Of TValue) ( 
	memberExpression As Expression(Of Func(Of TDocument, IEnumerable(Of TValue))),
	value As TValue
) As IMongoQuery
member GTE : 
        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