I am trying to implement my search on Lucene.NET and my needs are:
- search and find the result directly
- if there is no result, search again with Accent Insensitive
I did it on SQL Server but I want to move it to Lucene.NET. I made a research and first I found ISOLatinFilter and then ASCIIFoldingFilter in Lucene. But I couldn't find a simple example how to use it (Even in Lucene in Action book)
Can you please give me a small sample code to achieve accent insensitive search? Do I need to change anything else on Indexing? As I need accent sensitive also, I cannot create an Accent insensitive index only.
Thanks