Table of Contents

Interface IQueryResult

Namespace
Dynamicweb.Indexing.Querying
Assembly
Dynamicweb.Core.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

int

DebugInfo

Gets or sets debugging information related to the execution of the query that produced this result

QueryDebugInfo DebugInfo { get; set; }

Property Value

QueryDebugInfo

FacetGroupResult

Gets or sets facet groups result

IDictionary<string, FacetGroupResult> FacetGroupResult { get; set; }

Property Value

IDictionary<string, FacetGroupResult>

QueryResult

Gets or sets query result as collection of objects

IEnumerable<object> QueryResult { get; set; }

Property Value

IEnumerable<object>

TotalCount

Gets or sets total hits of result

int TotalCount { get; set; }

Property Value

int
To top