Exemplo n.º 1
0
 public static long Del(params string[] key)
 {
     for (int j = 0; j < key.Length; j++)
     {
         key[j] = RedisConstants.RedisPrefix + key[j];
     }
     return(cs.ExecuteNonQuery(key, (c, k) => c.Value.Del(k)));
 }