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

Less() public method

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