Skip to content

Instantly share code, notes, and snippets.

@AvgustPol
Created July 14, 2020 09:08
Show Gist options
  • Save AvgustPol/b5738d5b646639af92b8d3981ff3c1b2 to your computer and use it in GitHub Desktop.
Save AvgustPol/b5738d5b646639af92b8d3981ff3c1b2 to your computer and use it in GitHub Desktop.
RavenDB 3.5 get index DocsCount without query
return DocumentStore.DatabaseCommands.ForDatabase(((DocumentStore)DocumentStore).DefaultDatabase).GetStatistics().Indexes.Single(x => x.Name == indexName).DocsCount;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment