พัฒนาแอปพลิเคชันบน Azure Storage
Shahzad Mian
Content developer, DataCamp









"PartitionKey": "CustomerA",
"RowKey": "1001",
"Name": "Ava",
"Points": 120

การ Update จะแทนที่ properties ของ entity ด้วยค่าใหม่
การ Delete จะลบ entity ออกทั้งหมด
ตัวอย่างคำสั่ง:
table_client.update_entity(entity)
table_client.delete_entity("CustomerA","1001")
ใช้ Table Storage สำหรับข้อมูลเชิงโครงสร้างที่เรียบง่าย รองรับการขยายขนาด และประหยัดค่าใช้จ่าย
ทุก record ต้องมี PartitionKey และ RowKey
ใช้ Cosmos DB เมื่อต้องการ query ที่หลากหลาย, replication ทั่วโลก หรือรองรับหลาย data model
ทั้งสองบริการเสริมกันได้ดีในสถาปัตยกรรมข้อมูลแบบ hybrid


พัฒนาแอปพลิเคชันบน Azure Storage