When I was searching for SQL full text index solution in Nhinbernate, I came across Lucene.Net solution, and I found and excellent article at http://www.d80.co.uk/post/2011/03/04/Nhibernate-Search-Tutorial-with-LuceneNet-and-NHibernate-30.aspx.
Now I have another question that, I have one existing application and I am migrating it to use Nhibernate. In order to make search function to work properly, I assume need to preload all existing data into Lucene index first.
Since Nhibernate.search is a wrap around Lucene.Net, I think it must have its own document/field convention. So anybody has some best practice or code sample how shall I preload data in database into Lucene index?
Thanks Hardy