Skip to content

Commit

Permalink
Update AzureNativeTableClient.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
medevod authored Nov 20, 2023
1 parent 1e16fed commit 39d15fc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public Task SubmitOneOperation(EntityOperation entityOperation, CancellationToke
break;

case EntityOperationType.Delete:
await _tableClient.DeleteAsync();
await _tableClient.DeleteEntityAsync(nativeEntity.PartitionKey, nativeEntity.RowKey, cancellationToken: cancellationToken);
break;

default: throw new NotSupportedException(nameof(entityOperation.EntityOperationType));
Expand Down

0 comments on commit 39d15fc

Please sign in to comment.