Skip to content

Instantly share code, notes, and snippets.

@nmackenzie
Created January 16, 2014 04:19
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 nmackenzie/8449725 to your computer and use it in GitHub Desktop.
Save nmackenzie/8449725 to your computer and use it in GitHub Desktop.
var query = (
from entity in bookTable.CreateQuery<DynamicTableEntity>()
where entity.Properties["PartitionKey"].StringValue == "hardback"”" &&
entity.Properties["Year"].Int32Value == 1912
select entity);
List<DynamicTableEntity> books = query.ToList();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment