19
Azureテーブルストレージが400 Bad Requestを返す
これをデバッグモードで実行し、例外の詳細を含むイメージを添付します。どのようにして問題が発生したかを知ることができますか?テーブルにデータを挿入しようとしました。詳細を教えてくれませんか? Obs:ストレージは私のマシンではなくWindows Azureにあります。テーブルは作成されましたが、データを挿入するとこのエラーが発生します // Retrieve the storage account from the connection string. Microsoft.WindowsAzure.Storage.CloudStorageAccount storageAccount = Microsoft.WindowsAzure.Storage.CloudStorageAccount.Parse("DefaultEndpointsProtocol=https;AccountName=***;AccountKey=***"); // Create the table client. CloudTableClient tableClient = storageAccount.CreateCloudTableClient(); // Create the table if it doesn't exist. CloudTable table = tableClient.GetTableReference("EmployeeOnlineHistory"); table.CreateIfNotExists(); そしてここに挿入コードがあります: public static void SetStatus(Employee e, bool value) { try { // …