Example #1
0
        private async Task CleanupAsync()
        {
            if (keys.Count == 0)
            {
                return;
            }

            var command = new UNLINK(keys);
            await connection.ExecuteAsync(command).ConfigureAwait(false);
        }
Example #2
0
 public void Not_Allow_Build_With_Zero_Keys()
 {
     Assert.Throws <ArgumentException>(
         () => _ = new UNLINK()
         );
 }