views:

127

answers:

1

Hi,

How can i rebuild Lucene.NET Index using NHibernate.Search ?

Thanks.

+1  A: 

There is an Index method off of the IFullTextSearchSession that will force and index of an entity. So you just need to retrieve all of the objects and then call index on them.

Andrew Smith