Extensions for faceted searches in Umbraco.
This package is supported on Umbraco 8.1+ and requires Examine.Facets 1.1.0+.
Usage
Read the Examine Facets docs for information about performing a search.
Normally it is possible to get a list of facets from a result like this: results.GetFacet(string field);
Facet Extensions makes it possible to map facet results to any given type, including IPublishedContent. The values of the facets will be returned as an IEnumerable<T>.
results.GetFacet<T>(string field);