I\'ve read conflicting information as to whether or not the WADLogsTable table used by the DiagnosticMonitor in Windows Azure will automatically prune old log entries.
I have strings like this: RowKey = \"Local (Automatic/Manual) Tests\", When I try to store in Windows Azure then this fails as I assume it does not accept the \"/\" as part of the row key.
I have var query = from Dev device in storage.QueryEntities<Dev>(\"dev\") where device.PartitionKey == \"1\"
I have the following class: public class Note : TableServiceEntity { public Note( ) { } public Note(string pK)
I have 174 GB of XML files that I need to get into my Azure table storage, what is the best way of doing this? The XML files should be par开发者_如何学Gosed and their content put into different tables
I am new to working with Azure table Storage but I have being able to put together the code below that successfully allows my query to accept filterQuery (string) specified by the user -- for ex: (Amo
I have an table in the Azure Table Storage populated with different implementations of the base TableSer开发者_运维知识库viceEntity. Does anybody howto expose this through OData? Are there some best p
The Windows Azure Storage Abstractions and their Scalability Targets blog post indicates there is a 5,000 entities/second transaction limit for a single storage account, and there is a 500 entities/se
To implement simple paging in Azure Storage in relatively straight forward: Paging with Windows Azure开发者_开发技巧 Table Storage. This can be implemented with continuation token functionality.
I\'m using Windows Azure and venturing into Azure Table Storage for the first time in order to make my application scalable to high density traffic loads.