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 table storage returns 400 Bad Request

I ran this in debug mode, and I attach an image with the details of the exception. How can I …

c# azure exception azure-table-storage
Could not load file or assembly Microsoft.Data.OData Version=5.2.0.0 error in Azure Cloud Worker Role using Table Storage

I have a very peculiar issue using Azure Table Storage. I have a .NET 4.5 project in Visual Studio 2012 where I …

c azure azure-storage azure-table-storage
Multiple filter conditions Azure table storage

How can I set multiple filters on a Azure Table Storage? This is what I've tried: string partitionFilter = TableQuery.GenerateFilterCondition("…

c# azure azure-table-storage
How to get all rows in Azure table Storage in C#?

I am trying to get a list of all entities inside an azure table. Any idea of how I would …

c# azure nosql azure-table-storage azure-tablequery
Azure Storage Emulator error and does not start

This error is really driving me crazy. (Terminal running in administrator mode) Initialization of azure storage emulator in sql server 2014: …

azure azure-table-storage
Azure storage tables vs SQL

I'm just starting to learn Azure and I can't see too many scenarios where you would want to put something …

azure azure-sql-database azure-storage azure-table-storage
NoSQL: Getting the latest values from tables DynamoDB/Azure Table Storage

I have a little problem that needs some suggestions: Lets say we have a few hundred data tables with a …

nosql amazon-dynamodb azure-table-storage
How do I query an Azure storage table with Linq?

I'm not sure where exactly, but I've got the wrong idea somewhere with this. I'm trying to, in a first …

c# linq azure azure-storage azure-table-storage
Get all records from azure table storage

Using this code block try { StorageCredentials creds = new StorageCredentials(accountName, accountKey); CloudStorageAccount account = new CloudStorageAccount(creds, useHttps: true); CloudTableClient client = …

c# azure azure-table-storage
Painfully slow Azure table insert and delete batch operations

I am running into a huge performance bottleneck when using Azure table storage. My desire is to use tables as …

c# performance azure azure-table-storage