CSMongo.Query.MongoQuery.Greater C# (CSharp) Method

Greater() public method

Finds all records greater than the provided value
public Greater ( string field, object value ) : MongoQuery
field string
value object
return MongoQuery
        public MongoQuery Greater(string field, object value)
        {
            return this.AppendParameter(field, "$gt", value);
        }