Exemplo n.º 1
0
        public void Init()
        {
            var table = 'a' + Guid.NewGuid().ToString().ToLowerInvariant().Replace('-', 'a');

            this.storage = new TableStorage(table, TestHelpers.DevConnectionString);
            storage.CreateIfNotExists().Wait();
        }
Exemplo n.º 2
0
        public void Init()
        {
            var table = "testing";

            this.storage = new TableStorage(table, ConnectionString);
            storage.CreateIfNotExists().Wait();
        }