Mid
From PDF
Azure
Microsoft Azure
How do you store structured data using Azure Table Storage?
Short answer: Table Storage stores key-value pairs in entities. Use PartitionKey and RowKey for unique identification. Example: var tableClient = new TableClient(connectionString, "MyTable");
Example code
await tableClient.CreateIfNotExistsAsync();
var entity = new TableEntity("partition1", "row1")
{ { "Name", "John" }, { "Age", 30 } }; await tableClient.AddEntityAsync(entity);
Real-world example (ShopNest)
Product images upload to Azure Blob Storage; the DB only stores the blob URL.
Say this in the interview
- Define — one clear sentence (the short answer above).
- Example — relate it to a project like ShopNest or your real work.
- Trade-off — when you would not use it.
Share this Q&A
Share preview image: https://www.toolliyo.com/images/toolliyo-logo.png