MongoDB.Driver.Builders.QueryConditionList.GT C# (CSharp) Méthode

GT() public méthode

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