19
ที่เก็บตาราง 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 …