azure-table-storage Questions
4
We currently use Redis as our persistent cache for our web application but with it's limited memory and cost I'm starting to consider whether Table storage is a viable option.
The data we store is...
Cockeyed asked 18/10, 2016 at 8:44
1
I run a simple command against Azure Table Storage:
var operation = TableOperation.InsertOrReplace(entity);
await cloudTable.ExecuteAsync(operation);
Now the result that is returned by ExecuteAs...
Consentient asked 19/2, 2019 at 11:39
6
Solved
Does anyone know the proper way to query azure table storage for a null value. From what I've read, it's possible (although there is a bug which prevents it on development storage). However, I keep...
Neocene asked 19/11, 2010 at 19:5
2
Solved
I am using Azure Table Storage as my data sink for my Semantic Logging Application Block. When I call a log to be written by my custom EventSource, I get columns similar to the ff.:
EventId
Paylo...
Moonier asked 11/5, 2015 at 9:8
3
Solved
The following code returns blob file size of 0:
public long GetFileSize(string fileUrl)
{
var blob = GetBlobContainer().GetBlobReference(fileUrl);
return blob == null ? 0 : blob.Properties.Lengt...
Loring asked 26/4, 2012 at 11:15
5
Solved
So I am trying to test Azure Table Storage and mock things that I depend on. My class is structured in a way that I establish a connection in the constructor, i.e. I create a new instance of CloudS...
Carrington asked 27/11, 2018 at 23:49
3
Solved
To use the Azure Storage (Emulator) Table Service, i need to add a CORS rule for my TypeScript Browser App.
I want to add that rule manually using the REST interface (from Postman, not the Browser...
Glossographer asked 15/1, 2017 at 9:46
6
If I have a class like this:
public class Facet : TableServiceEntity
{
public Guid ParentId { get; set; }
public string Name { get; set; }
public string Uri{ get; set; }
public Facet Parent ...
Submarine asked 16/2, 2010 at 23:39
8
Solved
I have an Azure Storage Table and it has 3k+ records.
What is the most efficient way to delete all the rows in the table?
Issuable asked 12/10, 2014 at 14:53
29
Solved
This error is really driving me crazy. (Terminal running in administrator mode)
Initialization of azure storage emulator in sql server 2014:
C:\Program Files (x86)\Microsoft SDKs\Windows Azure\St...
Desireah asked 27/4, 2014 at 1:25
6
Solved
I'm developing an ASP.Net MVC & WebApi site that uses table storage in Visual Studio 2015 on Windows 8. It was working fine in the development environment (when I set UseDevelopmentStorage=true...
Flosi asked 17/11, 2015 at 19:11
6
Solved
I've seen various questions around SO about how to get the total row count of an Azure storage table, but I want to know how to get the number of rows within a single partition.
How can I do this ...
Til asked 16/8, 2016 at 14:42
2
I am migrating from Microsoft.WindowsAzure.Storage.Table in the (now obsolete) WindowsAzure.Storage NuGet package to Azure.Data.Tables and I can see that there are places where DynamicTableEntity ...
Climax asked 9/6, 2022 at 12:25
1
I'm running a series of well-structured queries against Azure Table Storage that should, so far as I can tell, be returning sub-second. Indeed, if I run them manually (say, from the Azure tools ins...
Parabasis asked 6/2, 2015 at 17:34
5
Solved
Using this code block
try
{
StorageCredentials creds = new StorageCredentials(accountName, accountKey);
CloudStorageAccount account = new CloudStorageAccount(creds, useHttps: true);
CloudTabl...
Urochrome asked 3/8, 2016 at 15:55
3
Solved
I am trying to get a list of all entities inside an azure table.
Any idea of how I would write this query?
Microampere asked 29/5, 2014 at 18:20
4
Solved
I am using the Azure.Data.Tables package & TableClient.QueryAsync() method to get the query result.
I wants the result to use it for pagination. I came across this code in https://learn.microso...
Subvert asked 13/8, 2021 at 12:20
3
Solved
I am new to using azure storage table. I was trying to insert my entities in batch but I found that you cannot do batch operation having different partition key.
Is there some way I can do that th...
Leda asked 11/10, 2018 at 6:21
2
I am trying to run my chat bot after I made some modifications within Visual Studio. My code works correctly when run locally with the bot framework emulator, but when published to my chat bot stor...
Segno asked 10/8, 2018 at 8:19
5
Solved
In Azure table storage, how can I query for a set of entities that match specific row keys in a partition???
I'm using Azure table storage and need to retrieve a set of entities that match a set o...
Maroon asked 2/1, 2016 at 5:48
2
Solved
On the GitHub page for https://github.com/Azure/azure-storage-net it states
"As of 9.4.0, Tables are not supported by this library."
Does anyone know where this namespace has gone ?
Haile asked 20/11, 2018 at 22:47
3
Solved
I am creating a new azure function using HttpTrigger. I want to implement an azure table storage table as input binding. Following a source code example in msdn, I am not able to figure out in whic...
Meningitis asked 6/9, 2019 at 13:25
3
I created a table in an Azure Table Storage and added a few records using my Entity class derived from TableEntity . After this I added two more properties to this class and tried to insert more re...
Flattery asked 23/8, 2015 at 19:28
8
Solved
I am trying to delete row from azure storage filter by only rowkey value.
But I dont see any overload for delete operation where we can filter with only rowkey. Is there any alternative option to d...
Padrone asked 13/5, 2016 at 3:58
2
Solved
I recently setup my .net core application to use MSI (Managed Identity) to communicate with Azure Blob.
Does MSI work with Azure Table Storage? Can't seem to find any documentation on it.
I am t...
Granuloma asked 30/11, 2018 at 20:50
1 Next >
© 2022 - 2025 — McMap. All rights reserved.