public void Init() { var table = 'a' + Guid.NewGuid().ToString().ToLowerInvariant().Replace('-', 'a'); this.storage = new TableStorage(table, TestHelpers.DevConnectionString); storage.CreateIfNotExists().Wait(); }
public void Init() { var table = "testing"; this.storage = new TableStorage(table, ConnectionString); storage.CreateIfNotExists().Wait(); }