Skip to content

Instantly share code, notes, and snippets.

@havarnov
Created August 25, 2017 13:15
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 havarnov/b7e2eb0228a5967e654b86f4bcd2cfab to your computer and use it in GitHub Desktop.
Save havarnov/b7e2eb0228a5967e654b86f4bcd2cfab to your computer and use it in GitHub Desktop.
// Here we find the Andersen family via its LastName
IQueryable<Family> familyQuery = this.client.CreateDocumentQuery<Family>(
UriFactory.CreateDocumentCollectionUri(databaseName, collectionName), queryOptions)
.Where(f => f.LastName == "Andersen");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment