Method Add
Add(String, String[])
Adds one dimension of drill downs; if you pass the same dimension more than once it is OR'd with the previous cofnstraints on that dimension, and all dimensions are AND'd against each other and the base query.
Declaration
public void Add(string dim, params string[] path)
Parameters
Type | Name | Description |
---|---|---|
System.String | dim | |
System.String[] | path |
Add(String, Query)
Expert: add a custom drill-down subQuery. Use this when you have a separate way to drill-down on the dimension than the indexed facet ordinals.
Declaration
public void Add(string dim, Query subQuery)
Parameters
Type | Name | Description |
---|---|---|
System.String | dim | |
Query | subQuery |
Add(String, Filter)
Expert: add a custom drill-down Filter, e.g. when drilling down after range faceting.
Declaration
public void Add(string dim, Filter subFilter)
Parameters
Type | Name | Description |
---|---|---|
System.String | dim | |
Filter | subFilter |