SaaS CMS has officially launched! Learn more now.

Interface ISolrSearchQuery

The interface expected to be returned by the query builder.

Namespace: Mediachase.Search.Providers.Solr35
Assembly: Mediachase.Search.Solr35SearchProvider.dll
Version: 11.8.3
Syntax
public interface ISolrSearchQuery

Properties

Faceting

A faceting manager to contain faceting parameters, and also assist with mapping facet counts back into a response object.

Declaration
IFacetManager Faceting { get; }
Property Value
Type Description
IFacetManager

Parameters

An enumeration of key-value pairs of parameters to send to the search engine.

Declaration
IEnumerable<KeyValuePair<string, string>> Parameters { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.String, System.String>>

Methods

AddParameter(String, String)

Adds a parameter to the ISolrSearchQuery.Parameters collection.

Declaration
void AddParameter(string name, string value)
Parameters
Type Name Description
System.String name

The name of the parameter.

System.String value

The value of the parameter.