Top "Azure-table-storage" questions

Azure Table storage is a cloud-based NoSQL service which is ideal for large amounts of structured, non-relational data.

Azure storage table delete row by row key

I am trying to delete row from azure storage filter by only rowkey value. But I dont see any overload …

c# azure azure-table-storage cloud-storage
How to download 100 million rows from Azure Table Storage FAST

I have been tasked with downloading around 100 million rows of data from Azure Table Storage. The important thing here being …

azure azure-storage azure-table-storage
Limit to the column size in azure table

Though official site of azure table talks about limitation of other entities, I never read anything on column data size …

azure-table-storage
Is there a way to get distinct PartionKeys from a Table

Currently I'm using the PartitionKey to differentiate devices that are storing data into Azure Table Services. I'd like to build …

.net azure azure-table-storage
azure table : Duplicate partition key results in (409) conflict

I am trying to insert multiple rows into the Azure table service. As far as this article goes, I have …

azure azure-storage azure-web-roles azure-table-storage
Best way to perform async query Azure Table Storage

I have a basic Azure table storage query working using the Windows Azure Storage Client 3.0. What's the easiest way to …

c# azure async-await azure-storage azure-table-storage
Azure Table Storage - No connection could be made because the target machine actively refused it 127.0.0.1:10002

I'm developing an ASP.Net MVC & WebApi site that uses table storage in Visual Studio 2015 on Windows 8. It was …

c# asp.net azure azure-table-storage
Azure Table Storage get last record

I have an azure table with about 5 million+ rows, each partition about 100k rows. The RowKey is a sortable timestamp. …

azure azure-table-storage
Microsoft.WindowsAzure.Storage vs Microsoft.WindowsAzure.StorageClient

What's the difference between these two assemblies and when should I use each? I find that there are class name …

azure azure-storage azure-table-storage azure-sdk-.net
How do you exclude a property from being persisted in Azure Table storage?

If I have a class like this: public class Facet : TableServiceEntity { public Guid ParentId { get; set; } public string Name { get; …

azure azure-storage azure-table-storage