我正在使用Microsoft Azure,並試圖找出表中所有的實體。不幸的是,我不知道這些實體的具體情況。我已閱讀http://azure.microsoft.com/en-us/documentation/articles/storage-dotnet-how-to-use-tables/,它看起來大部分實體的他們知道他們的具體細節。例如,他們知道這將是一個人。找出表中的所有實體C#
有沒有辦法讓我的表的所有實體不知道它們的具體細節?
我想這樣做的原因是因爲我最終想知道我的表使用了多少內存,並且我假設我首先需要通過每個實體來查找使用了多少內存。下面的代碼我到目前爲止:
static double CalculateTableMemoryUsage()
{
double memory = 0;
try
{
var storageAccount = Microsoft.WindowsAzure.Storage.CloudStorageAccount.Parse("UseDevelopmentStorage=true");
CloudTableClient tableClient = storageAccount.CreateCloudTableClient();
CloudTable table = tableClient.GetTableReference("mytable");
table.CreateIfNotExists();
//I've successfully created the table. Any idea how I can look
// through the entity(s) of that table though?
}
catch (Exception ex)
{
Console.WriteLine(ex);
}
return memory;
}