-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 
Author Message
 Post subject: [Hibernate Search]How to restrict search to one table?
PostPosted: Tue Aug 21, 2007 3:32 am 
Newbie

Joined: Mon Apr 23, 2007 6:57 pm
Posts: 12
I have two entity classes(simplified) as follows:


Code:
@Entity
@Table(name="categories")
public class Categories{
@DocumentId
String id;
@Field(index=TOKENIZED, store=store.YES)
String name;
.....
}

@Entity
@Table(name="subcategories")
public class Subcategories{
@DocumentId
String id;
@Field(index=TOKENIZED, store=store.YES)
String name;
}


How do I restrict search to name which exists only in Categories or Subcategories?

I am building MultiFieldQueryParser and if I pass just "name" it returns matching objects from both Categories and SubCategories. I have tried categories.name, Categories.name to restrict the search only within Categories, but it does not return anything for the same search string.

Am I doing anything wrong? I appreciate any help.

Thanks.[/code]


Top
 Profile  
 
 Post subject:
PostPosted: Tue Aug 28, 2007 2:36 pm 
Hibernate Team
Hibernate Team

Joined: Sun Sep 14, 2003 3:54 am
Posts: 7256
Location: Paris, France
do ftSession.createFullTextQuery(luceneQuery, Subcategory.class);
to restrict the search to Subcategories only

_________________
Emmanuel


Top
 Profile  
 
 Post subject:
PostPosted: Wed Aug 29, 2007 2:27 am 
Newbie

Joined: Mon Apr 23, 2007 6:57 pm
Posts: 12
emmanuel wrote:
do ftSession.createFullTextQuery(luceneQuery, Subcategory.class);
to restrict the search to Subcategories only


Thanks. I got it.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.