Azure Storage Table – Cannot add user-defined property/field
When inserting records into Storage Tables in Azure the base columns are PartitionKey, RowKey and TimeStamp. To ensure the other properties of your entity is also created in the storage you HAVE to define them as properties (with a GET and SET), otherwise it will not be created e.g.: This will [...]
