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

LessOrEqual() public method

Finds all records less than or equal to the provided value
public LessOrEqual ( string field, object value ) : MongoQuery
field string
value object
return MongoQuery
        public MongoQuery LessOrEqual(string field, object value)
        {
            return this.AppendParameter(field, "$lte", value);
        }