문제

I have title search with Lucene .net and facing problem with LIKE clause search.

I have tried below terms but it is matching whole word.

query.Add(new TermQuery(new Term("title", word.ToLower())), BooleanClause.Occur.MUST);

Also tried

query.Add(new TermQuery(new Term("title", word.ToLower())), BooleanClause.Occur.SHOULD);

Any idea how to apply LIKE clause?

도움이 되었습니까?

해결책

I would guess you are probably looking for either Prefix or Wildcard queries.

In general, I'd recommend getting some level of understanding of the instantiable subclasses of Query, listed here.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top