简体   繁体   中英

Lucene Search with Like Clause

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 .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM