Skip to content

Instantly share code, notes, and snippets.

@gbellmann
Created April 19, 2015 22:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gbellmann/c7a511dc6230c77a685a to your computer and use it in GitHub Desktop.
Save gbellmann/c7a511dc6230c77a685a to your computer and use it in GitHub Desktop.
Selecting just the fields we need to query Azure table storage.
CloudTable customerTable = tableClient.GetTableReference("customers");
TableQuery query = new TableQuery().Select(new string[] { "Name" });
customerTable.ExecuteQuery(query);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment