How do you store structured data using Azure Table Storage?
- Table Storage stores key-value pairs in entities.
- Use PartitionKey and RowKey for unique identification.
Example:
var tableClient = new TableClient(connectionString, "MyTable");
await tableClient.CreateIfNotExistsAsync();
var entity = new TableEntity("partition1", "row1")
{ "Name", "John" },
{ "Age", 30 }
await tableClient.AddEntityAsync(entity);