hi,
i'm implementing Hibernate Search in my application, i want know Some thing about Class Level Search. I saw the tutorials it gives the property/field name that equal to "someText", is ok. i want to search "someText" in the complete class without mention the filed/property name.
Code:
MultiFieldQueryParser parser = new MultiFieldQueryParser( new String[]{"name", "address", "address2"},
new StandardAnalyzer());
org.apache.lucene.search.Query query = parser.parse( "someText" );
This can be done the key word " like " in the dblevel. Some one help to guide me.
Thanks.