views:

31

answers:

1

What is the best way trying to get a text search function using nhibernate? I have read about NHibernate.Search, but cannot find the library anywhere.

I downloaded the latest NHibernate source code(2.1.2) and compiled it, but i still cannot find NHibernate.Search.

Does anyone have any suggestions? Or any other methods to do text search?

EDIT: Using MySQL database, incase it makes any difference.

+2  A: 

NHiberante.Search a separate dll to make Nhiberante and Lucene work together. You have to download and reference it if you want to use it. You might like to read some introduction about Lucene to understand how Nhiberante.Search works.

One of the places where you can get the dll is hornget

If you want to the MySql specific full text search options, there won't be any help from Nhibernate for you to use them.

Paco