CSMongo.Query.MongoQuery.GreaterOrEqual C# (CSharp) 메소드

GreaterOrEqual() 공개 메소드

Finds all records greater than or equal to the provided value
public GreaterOrEqual ( string field, object value ) : MongoQuery
field string
value object
리턴 MongoQuery
        public MongoQuery GreaterOrEqual(string field, object value)
        {
            return this.AppendParameter(field, "$gte", value);
        }