I want to retrive the record from azure storage table with top 1000 records. This table has million of records.
Herer is my code, Its not working.
CloudStorageAccount dataFETCH_storageAccount = CloudStorageAccount.Parse(CloudConfigurationManager.GetSetting("PROD_StorageConnectionString"));
CloudTableClient dataFETCH_storageTableClient = dataFETCH_storageAccount.CreateCloudTableClient();
dataFETCH_tbl = dataFETCH_storageTableClient.GetTableReference("TableName");
TableQuery tableQuery = new TableQuery().Take(1000);
var queryResult = tcpMasterStorageTable_Org.ExecuteQuerySegmented(tableQuery, token);
Anyone help me on this problem?