Reputation: 1
I have to achieve the deletion of entities in a Azure Table without specifying partition key and row key using C#.
My partition key would be a new GUID and row key is incremental value for a batch.
Upvotes: 0
Views: 632
Reputation: 15860
You can't delete entries without specifying PK/RK in C# from Azure table storage - unless you delete the whole table
You can do one of the following to delete entries from a storage table:
Upvotes: 1