MongoDB.Driver.Builders.QueryConditionList.GT C# (CSharp) Method

GT() public method

Adds a $gt test to the query.
public GT ( BsonValue value ) : QueryConditionList
value BsonValue The value to compare to.
return QueryConditionList
        public QueryConditionList GT(
            BsonValue value
        ) {
            conditions.Add("$gt", value);
            return this;
        }