I\'m using Fluent NHibernate and I would like to implement NHibernate.Search with Lucene but I can\'t find any examples on how to do that with Fluent NHibernate. It appears ther
If you're using the Fluent Configuration API, then you just need to use the ExposeConfiguration
method to get at the NHibernate Configuration instance.
Fluently.Configure()
.Database(...)
.Mappings(...)
.ExposeConfiguration(cfg =>
{
cfg.SetListener(...);
cfg.SetListener(...);
})
.BuildSessionFactory();