Benchmarkr.Couchbase.Benchmark.Count C# (CSharp) Method

Count() public method

public Count ( EmployeeQuery query ) : int
query EmployeeQuery
return int
        public override int Count(EmployeeQuery query)
        {
            using (var enumerator = this.ConvertQuery(query).Run())
            {
                return enumerator.Count;
            }
        }