Advertisement
Guest User

Untitled

a guest
May 25th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. private IOrderedQueryable<InvoiceForm> GetAllQuery()
  2. {
  3. var feedOptions = new FeedOptions { MaxItemCount = -1 };
  4. var documentCollectionUri = new Uri(_dataContext.DocumentCollection.DocumentCollection.AltLink, UriKind.RelativeOrAbsolute);
  5. var query = _dataContext.Database.Client.CreateDocumentQuery<InvoiceForm>(documentCollectionUri, feedOptions);
  6. return query;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement