Tag: Azure Table
-
Basic Operations on Windows Azure Table in Windows Azure Storage in Storage Client Library 2.0
In this post we will take a look on performing basic operations on Windows Azure table using Windows Azure Storage Client Library 2.0. To work with Windows Azure Storage Client 2.0 grab the library from NuGet package. Right click on the project and select Manage NuGet Packages. In NuGet Package Manager and type WindowsAzure.Storage to…
-
Fetching name of all tables in Windows Azure Storage
To list all the table name from Windows Azure storage account, you need to call ListTable() function of CloudTableClient class. To start with first you need to add below namespaces. Then create a storage account as below, Make sure to put your own connection string to azure storage to parse. Next you need to create…