Of course you can do it like this:
RavenQueryStatistics stats; session.Query<Posts>() .Statistics(out stats) .Where(x=>x.Date <= DateTime.Today) .ToList();
Statistics contain whether the index is outdated or not, and there is a property that tells you what is the latest update date for the index.
source share