public Task RequeuePlayerRow(PlayerRow playerRow, int syncSeason, bool syncFoundChanges) { var batchOperation = new TableBatchOperation(); batchOperation.Delete(playerRow); batchOperation.Insert(playerRow.CreateRequeuedRow(DateTime.UtcNow, syncSeason, syncFoundChanges)); return(_playersTable.ExecuteBatchAsync(batchOperation)); }