FilterDefinitionBuilderTDocumentGt Method (ExpressionFuncTDocument, UInt32, UInt32) |
Creates a greater than filter for a UInt32 field.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.10.0+569905ff5e778c38ea19d9d0392496a83e1704ed
Syntax public FilterDefinition<TDocument> Gt(
Expression<Func<TDocument, uint>> field,
uint value
)
Public Function Gt (
field As Expression(Of Func(Of TDocument, UInteger)),
value As UInteger
) As FilterDefinition(Of TDocument)
member Gt :
field : Expression<Func<'TDocument, uint32>> *
value : uint32 -> FilterDefinition<'TDocument>
Parameters
- field
- Type: System.Linq.ExpressionsExpressionFuncTDocument, UInt32
The field. - value
- Type: SystemUInt32
The value.
Return Value
Type:
FilterDefinitionTDocumentA greater than filter.
See Also