Questions tagged [azure-tablequery]

126 questions
0
votes
3 answers

Azure TableEntity - Hooking to Read / Write Operations

Backgroung Assuming I have an Azure Table Entity class MyEntity : TableEntity { public string LongString { get; set; } public bool IsCompressed { get; set; } } And if the LongString > 64KB (Azure limitation for property), I want to save the…
motcke
  • 438
  • 6
  • 17
0
votes
1 answer

Use TableContinuationToken as bookmark

This query taken from here is quite straight forward: TableContinuationToken token = null; List shoes = new List(); do { TableQuerySegment queryResult = query.ExecuteSegmented(token); token =…
cs0815
  • 16,751
  • 45
  • 136
  • 299
0
votes
1 answer

Best way to do a large amount of Azure Table Queries?

I have an Azure table that has over a million entries and I am trying to do about 300,000 queries programmatically in C# in order to transfer some data to another system. Currently I am doing the following as I read through a file which has the…
-1
votes
1 answer

Access Azure Table Storage in SQL Server

I'm trying to access Azure Table Storage in a Gen 2 data lake from Azure SQL Server, but I can't find any documentation. Loads on how to get to csv's in blob storage, but nothing on Azure tables. Any ideas? John
-1
votes
1 answer

Azure logic apps Odata filter query with if statment on two columns

Good morning, I have a unique requirement where I have to apply a filter on "Get entities" from Azure table based on a condition, filters come from HTTP get request. There are two filters - a and b. If both filters passed to the flow are empty, no…
-1
votes
1 answer

To retrieve n random entities from azure table storage using partition key only.

I have a table named Article which contains 6 different values of partition key and under each partitions key there are 100's of entities, but under each partition key I want to retrieve only n entities back from table. So, I want to query such that…
rahul desai
  • 81
  • 1
  • 6
1 2 3
8
9