private async Task LoadAsync()
        {
            var allItems = await _configurationEntityStore.GetAllByPartitionKey(_tableName, _partitionKey, _cancellationToken).ConfigureAwait(false);

            Data = allItems.Where(x => x.IsActive).ToDictionary(x => x.RowKey, x => x.Value, StringComparer.OrdinalIgnoreCase);
        }