November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
I think you can do something like this:
var result =
...
.HistogramFacetFor(x => ((IChangeTrackable) x).Created, DateInterval.Year)
.GetResult();
var facets = result.HistogramFacetFor<IChangeTrackable>(x => x.Created);
I want to create a histogramfacet based on when the page or file was created. Making a histogram facet with the published date was easy, but the created date is not part of ISearchContent.