London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Interface ISolrSearchQuery

The interface expected to be returned by the query builder.

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