Skip to main content
This How to is based on the Medium article by Andrew Varnon
The implementation is done using a Smart Collection and a CRUD service that will wrap the Azure Table Storage API.

The Table Storage Definition

You can use the new Azure Data Explorer to create and populate a Table Storage in your Azure Storage account. In our example, we are going to use the Table Customers with the fields:
  • Id: PartitionKey + RowKey
  • Timestamp (updated at)
  • Email as String
  • FirstName as String
  • LastName as String

Install Azure data-tables package

Smart Collection definition

The Azure Data Tables Service Wrapper

Routes definition