Kiedy próbuję utworzyć tabelę w tabeli magazynowe (przy użyciu emulatora Azure Local Storage) pojawia się błąd „Zdalny serwer zwrócił błąd: (400) Bad Request”.Bad żądanie - Tworzenie tabeli w lokalnej Azure Storage
Nazwa tabeli jest według zasady, więc co może być dzieje ?!
Konfiguracja Rola:
<ConfigurationSettings>
<Setting name="Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString" value="UseDevelopmentStorage=true" />
<Setting name="StorageConnectionString" value="UseDevelopmentStorage=true" />
</ConfigurationSettings>
Tworzenie metody tabeli:
CloudStorageAccount storageAccount = CloudStorageAccount.Parse(
CloudConfigurationManager.GetSetting("StorageConnectionString"));
CloudTableClient tableClient = storageAccount.CreateCloudTableClient();
CloudTable table = tableClient.GetTableReference("people");
table.CreateIfNotExists();