MongoDB.Driver.Builders.QueryConditionList.Size C# (CSharp) Метод

Size() публичный Метод

Adds a $size test to the query.
public Size ( int size ) : QueryConditionList
size int The size of the array.
Результат QueryConditionList
        public QueryConditionList Size(
            int size
        ) {
            conditions.Add("$size", size);
            return this;
        }