Query Statistics and more
New Features
Query Statistics
It is now possible to get the full count of hits when using Skip() and Take() to paginate:
LuceneQueryStatistics stats = null;
provider
.AsQueryable<SampleDocument>()
.CaptureStatistics(s => { stats = s; })
.Where(d => d.SearchText == "foo")
.Skip(20)
.Take(20)
.ToList();See LuceneQueryStatistics.cs for available metadata.
Binaries
NuGet package at https://www.nuget.org/packages/Lucene.Net.Linq/3.3.0
PM> Install-Package Lucene.Net.Linq -Version 3.3.0