Tag: 天青表存储

Azure表存储返回400错误请求

我在debugging模式下运行它,并附上一个图像与exception的细节。 我怎么知道哪里出了问题? 我试图在表格中插入数据。 天青不能给我更多的细节? Obs:存储在Windows Azure上,不在我的机器上。 表已创build,但插入数据时出现此错误 // 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 { // Retrieve […]