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?