Advertisement
Guest User

Untitled

a guest
May 24th, 2015
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. using Microsoft.WindowsAzure.Storage;
  2. using Microsoft.WindowsAzure.Storage.Table;
  3.  
  4. public CloudTable CreateTable(CloudStorageAccount storageAccount)
  5. {
  6. CloudTableClient tableClient = storageAccount.CreateCloudTableClient();
  7. CloudTable table = tableClient.GetTableReference("orders");
  8. table.CreateIfNotExists();
  9. return table;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement