MongoDB.Driver.Builders.QueryConditionList.GT C# (CSharp) Метод

GT() публичный Метод

Adds a $gt test to the query.
public GT ( BsonValue value ) : QueryConditionList
value BsonValue The value to compare to.
Результат QueryConditionList
        public QueryConditionList GT(
            BsonValue value
        ) {
            conditions.Add("$gt", value);
            return this;
        }