Se você estiver usando SolrSharp, ele não suporta consultas negativas.
Você precisa alterar QueryParameter.cs (Criar um novo parâmetro)
private bool _negativeQuery = false;
public QueryParameter(string field, string value, ParameterJoin parameterJoin = ParameterJoin.AND, bool negativeQuery = false)
{
this._field = field;
this._value = value.Trim();
this._parameterJoin = parameterJoin;
this._negativeQuery = negativeQuery;
}
public bool NegativeQuery
{
get { return _negativeQuery; }
set { _negativeQuery = value; }
}
E na classe QueryParameterCollection.cs, a substituição ToString (), verifica se o parâmetro Negative é verdadeiro
arQ[x] = (qp.NegativeQuery ? "-(" : "(") + qp.ToString() + ")" + (qp.Boost != 1 ? "^" + qp.Boost.ToString() : "");
Quando você chama o criador do parâmetro, se for um valor negativo. Simples mudança de propriedade
List<QueryParameter> QueryParameters = new List<QueryParameter>();
QueryParameters.Add(new QueryParameter("PartnerList", "[* TO *]", ParameterJoin.AND, true));