Skip to content

Instantly share code, notes, and snippets.

@bpatra
Created December 5, 2020 22:41
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 bpatra/f85b60e6a320687f0e64e7a030381498 to your computer and use it in GitHub Desktop.
Save bpatra/f85b60e6a320687f0e64e7a030381498 to your computer and use it in GitHub Desktop.
IDocumentClientWrapped client = /* instanciation */;
IRetryQueryable<MyType> query = client.CreateDocumentQuery<MyType>(/* get usual uri using the UriFactory*/);
IEnumerable<string> = query.Where(c => c.Member1 == "SomeValue").Select(c=>c.StringMember2).AsRetryEnumerable();
/* manipulate your in memory enumeration as you wish*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment