예제 #1
0
 public int CountStartingWith(Key key)
 {
     _logger.LogStoreCall("CountStartingWith", key);
     try
     {
         return(_store.CountStartingWith(key));
     }
     catch (Exception ex)
     {
         _logger.LogError(ex);
         throw;
     }
 }
예제 #2
0
 public int CountStartingWith(Key key)
 {
     return(_store.CountStartingWith(_GetTransformedKey(key)));
 }
 public int CountStartingWith(Key key)
 {
     return(_store.CountStartingWith(key));
 }