Nested facet
Feature
How to
DocumentCollection<TechProductDocument> documentCollection; // from DI
var rersult = documentCollection
.Select()
.FacetField(q => q.InStock)
.Execute(); DocumentCollection<TechProductDocument> documentCollection; // from DI
var rersult = documentCollection
.Select()
.FacetField(q => q.InStock, facet => facet
.FacetField(q => q.Categories))
.Execute()
.Facets(out var data);Last updated
Was this helpful?