MongoDB.Driver.Builders.QueryConditionList.Size C# (CSharp) Méthode

Size() public méthode

Adds a $size test to the query.
public Size ( int size ) : QueryConditionList
size int The size of the array.
Résultat QueryConditionList
        public QueryConditionList Size(
            int size
        ) {
            conditions.Add("$size", size);
            return this;
        }