Azure表存储返回400错误请求
我在调试模式下运行了该程序,并附加了带有异常详细信息的映像。我怎么知道出了什么问题?我试图插入表中的数据。天蓝色不能给我更多细节吗? 观察:该存储位于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 { // …