Skip to content

Instantly share code, notes, and snippets.

@gbellmann
Created April 17, 2015 00:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gbellmann/b218e71854dcd77a498e to your computer and use it in GitHub Desktop.
Save gbellmann/b218e71854dcd77a498e to your computer and use it in GitHub Desktop.
Function to delete a record from Azure Table Storage
using Microsoft.WindowsAzure.Storage;
using Microsoft.WindowsAzure.Storage.Table;
public void DeleteOrder(CloudTable table, OrderEntity toDelete)
{
TableOperation deleteOperation = TableOperation.Delete(toDelete);
table.Execute(deleteOperation);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment