Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows Azure sdk 1.7, CloudTableClient missing GetTableReference function

Tags:

windows

azure

banging my head against the wall trying to figure out why i'm missing this function.

the CloudTableClient is missing GetTableReference

var tableClient = new CloudTableClient(baseAddress, credentials) {Timeout = new TimeSpan(0, 0, 0, 30)};
tableClient.GetTableReference("table1");

doesn't show up in IntelliSense or in the Object Browser.

:(

like image 786
Johnny Bliss Avatar asked Oct 17 '12 18:10

Johnny Bliss


1 Answers

GetTableRefenrece is part of Azure SDK 1.7.1 which is currently only available in GitHub. Only v. 1.7.0 is available via NuGET / WebPI Installer. This method returns an instance of CloudTable, which is also only part of Azure SDK 1.7.1.

If you want to use it, they you have to download the source and build it on your own. There is nothing scary in downloading and building the official source of Azure SDK. I personally did it for a project, because I needed some functionality which does not exists in the older SDK.

like image 97
astaykov Avatar answered Sep 28 '22 09:09

astaykov