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

Size() public method

Finds fields that match all value within the record
public Size ( string field, int size ) : MongoQuery
field string
size int
return MongoQuery
        public MongoQuery Size(string field, int size)
        {
            return this.AppendParameter(field, "$size", size);
        }