Created
August 24, 2017 18:14
-
-
Save dontpaniclabsgists/ee5b49872ad7c8b79ba2a5311063e867 to your computer and use it in GitHub Desktop.
cosmos3_1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public int Count() | |
{ | |
using (var client = new DocumentClient(new Uri(_endpoint), _key)) | |
{ | |
var link = UriFactory.CreateDocumentCollectionUri(_databaseId, CollectionId); | |
var count = client.CreateDocumentQuery<Note>( | |
link, | |
new FeedOptions() | |
{ | |
EnableCrossPartitionQuery = true | |
}) | |
.Count(); | |
return count; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment