Interface IQueryResult
- Namespace
- Dynamicweb.Indexing.Querying
- Assembly
- Dynamicweb.Indexing.dll
The Interface IQueryResult defines basic query result model
public interface IQueryResult
Properties
Count
Gets or sets results count
int Count { get; set; }
Property Value
DebugInfo
Gets or sets debugging information related to the execution of the query that produced this result
QueryDebugInfo DebugInfo { get; set; }
Property Value
FacetGroupResult
Gets or sets facet groups result
IDictionary<string, FacetGroupResult> FacetGroupResult { get; set; }
Property Value
QueryResult
Gets or sets query result as collection of objects
IEnumerable<object> QueryResult { get; set; }
Property Value
TotalCount
Gets or sets total hits of result
int TotalCount { get; set; }