Skip to content

Instantly share code, notes, and snippets.

@gbellmann
Created April 19, 2015 22:11
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/10131d1a1698810799a4 to your computer and use it in GitHub Desktop.
Save gbellmann/10131d1a1698810799a4 to your computer and use it in GitHub Desktop.
Combining Where, Select and Take.
TableQuery query = new TableQuery()
.Where(TableQuery.GenerateFilterCondition("PartitionKey", QueryComparisons.Equal, "Argentina"))
.Select(new string[] { "LastName", "Name" })
.Take(5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment