Nếu bạn đang sử dụng SolrSharp, nó không hỗ trợ các truy vấn phủ định.
Bạn cần thay đổi QueryParameter.cs (Tạo một tham số mới)
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; }
}
Và trong lớp QueryParameterCollection.cs, ghi đè ToString (), xem tham số Phủ định có đúng không
arQ[x] = (qp.NegativeQuery ? "-(" : "(") + qp.ToString() + ")" + (qp.Boost != 1 ? "^" + qp.Boost.ToString() : "");
Khi bạn gọi trình tạo tham số, nếu đó là giá trị âm. Đơn giản thay đổi cà vạt thích hợp
List<QueryParameter> QueryParameters = new List<QueryParameter>();
QueryParameters.Add(new QueryParameter("PartnerList", "[* TO *]", ParameterJoin.AND, true));