Class « Search « JPA Q&A





1. Hibernate Search for multiple classes    stackoverflow.com

There are two tables with no relation defined eg : Bugs and Comments For each bug id there are multiple comments.Suppose I am using a query like

  • select b.bugid,b.bugtitle,c.comment from bugs b , ...

2. NHibernate Search - _hibernate_class problem    stackoverflow.com

I have this mapped class called as "Client" used for NHibernate and is decorated with Lucene search attributes. When NHibernate.Search does initial indexing, I found through Luke that the special property ...

3. HQL table named "Class"    stackoverflow.com

I'm creating hql and use

var queryString = "from " + formType.Name;
        queryString += " where Id= :t";
       ...

4. Criteria and search data with specialization class    forum.hibernate.org

Hi, I'm using two class, example Person and Client, Client class extends Person. I want do a search at the class Client, but the parameter that I want uses how the filter is inside Person client, at this moment the Hibernate returns any error that is cannot possible search the parameter (parameter name inside the class Person, for example.). org.hibernate.PropertyAccessException: could ...