A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More

Interface ISolrSearchQuery

The interface expected to be returned by the query builder.

Namespace: Mediachase.Search.Providers.Solr35
Assembly: Mediachase.Search.Solr35SearchProvider.dll
Version: 9.24.1
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.