public IQueryBuilder MustNot(ISearchTerm term)
 {
     _query.Append($" {LuceneHelper.MUST_NOT_OPERATOR}{term.ToLuceneString()}");
     return(this);
 }