Si vous utilisez SolrSharp, il ne prend pas en charge les requêtes négatives.
Vous devez changer QueryParameter.cs (Créer un nouveau paramètre)
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; }
}
Et dans la classe QueryParameterCollection.cs, le remplacement de ToString () recherche si le paramètre Negative est true.
arQ[x] = (qp.NegativeQuery ? "-(" : "(") + qp.ToString() + ")" + (qp.Boost != 1 ? "^" + qp.Boost.ToString() : "");
Lorsque vous appelez le créateur du paramètre, s'il s'agit d'une valeur négative. Simple changement de la propriété
List<QueryParameter> QueryParameters = new List<QueryParameter>();
QueryParameters.Add(new QueryParameter("PartnerList", "[* TO *]", ParameterJoin.AND, true));