Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6833769
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T23:01:14+00:00 2026-05-26T23:01:14+00:00

I have two short question regarding Azure Storage Tables. Is there something like an

  • 0

I have two short question regarding Azure Storage Tables.

  1. Is there something like an overview of the techniques I can use to query a storage table? I found an example for LINQ, are there alternatives in the .NET framework?

  2. Where does the “query processing” take place? E.g. when using SQL and you send a complex query to your SQL server, this server begins to evaluate it and returns the result to your client. Is it the same for table storage, or gets the client loads of data and has to do the processing itself?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T23:01:15+00:00Added an answer on May 26, 2026 at 11:01 pm

    For #1, take a look at the WCF Data Services client library (what’s used in .NET to query table storage). You can avoid LINQ if you want to construct URLs by hand, but LINQ is by far the dominant way that people query table storage from .NET code.

    For #2, table storage supports very few operations (basically just filters). If you need to do sorting, grouping, etc., you’ll need to pull the data down locally first and then query from there. Where things happen depends on the code you write. E.g., the following will fail:

    mytable.Select(e => e.PartitionKey == "foo").OrderBy(e => e.SomeTime).Take(10)

    because the query will be sent to Windows Azure table storage and fail because tables don’t support sorting. However, the following will work (but be very inefficient):

    mytable.Select(e => e.PartitionKey == "foo").ToList().OrderBy(e => e.SomeTime).Take(10)

    This will result in the entire result set (everything with the “foo” partition key) being pulled down locally, because the .ToList causes the query to be executed. Then once it’s all down in memory, it will be sorted and the top ten items returned.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a question regarding implementation of smart-search features. For example, consider something like
In short: I want to have two fullscreen views, where I can switch between
I have a feeling that this is a subjective question, but perhaps there's something
Short question. I have two models: class Author(models.Model): name = models.CharField(max_length=250) class Book(models.Model): title
I have two identical tables and need to copy rows from table to another.
I have two web applications written in Flex I would like to integrate. I
I'm trying to animate object. I use keyframe animation: I have two vertex buffers
I have two classes in short here they are: public final class ServerMain {
The short question is: I have a webpage in coldfusion / asp.net with many
Really simple question time: I have two divs. <div id=1> <p>hello</p> </div> <div id=2>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.