MongoDB.Driver.Collection.Count C# (CSharp) Метод

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

Count all items in the collection.
public Count ( ) : long
Результат long
        public long Count()
        {
            return this.Count(new Document());
        }

Same methods

Collection::Count ( Document spec ) : long