Обновите RowKey или PartitionKey в хранилище таблиц Azure

Могу ли я обновить свойства объекта RowKey или PartitionKey в хранилище таблиц Azure?

Я думал, что да или, может быть, просто PartitionKey, но сейчас я пытаюсь это сделать (попробуйте изменить RowKey или PartitionKey) и получить ошибку:

The remote server returned an error: (404) Not Found.
Description: An unhandled exception occurred during the execution of the current 
             web request. Please review the stack trace for more information about 
             the error and where it originated in the code.

Exception Details: System.Net.WebException: The remote server returned an error:
                  (404) Not Found.

Source Error:

Line 143:
Line 144:                var updateOperation = TableOperation.Replace(entity);
Line 145:                _table.Execute(updateOperation);
Line 146:            }
Line 147:        }
Мой код для обновления сущности (короткая версия):
var query = new TableQuery<CalculatorAccessTokenEntity>()
                .Where(TableQuery.GenerateFilterCondition("AccessUrl", 
                                                           QueryComparisons.Equal, url));

var newToken = GetUniqueKey(5);//get some random string of length 5
entity.PartitionKey = newToken;

// Try to use Merge here also but unsuccessful
var updateOperation = TableOperation.Replace(entity);    _table.Execute(updateOperation);

Ответы на вопрос(1)

Ваш ответ на вопрос