Scalien.Table.Count C# (CSharp) Method

Count() public method

Return the number of matching keys in the table.
public Count ( ByteRangeParams ps ) : ulong
ps ByteRangeParams The filter parameters.
return ulong
        public virtual ulong Count(ByteRangeParams ps)
        {
            return client.Count(tableID, ps);
        }

Same methods

Table::Count ( StringRangeParams ps ) : ulong

Usage Example

コード例 #1
0
 public long CountUsers()
 {
     return((long)table.Count(new ByteRangeParams()));
 }