-->
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.  [ 2 posts ] 
Author Message
 Post subject: Criteria OR?
PostPosted: Mon Feb 23, 2009 4:13 am 
Newbie

Joined: Mon Oct 16, 2006 7:55 am
Posts: 5
Hallo!

Ich verwende die folgenden Tabellen:

Projekt:
property projektleiter 1:1 auf Tabelle mitarbeiter (key: id)
property arbeitsteam 1:n auf Tabelle mitarbeiter (key: id)

Ich möchte jetzt mittels Criteria Projekte so abfragen, ob ein bestimmter Mitarbeiter ENTWEDER Projektleiter ODER Mitarbeiter im Projekt ist.

Erster Ansatz ohne OR:
criteria.createCriteria("projekt").createCriteria("projektLeiter").add(Restrictions.eq("id",empId.intValue())),
criteria.createCriteria("projekt").createCriteria("arbeitsteam").createCriteria("mitarbeiter").add(Restrictions.eq("id", empId.intValue())))

>> funktioniert! wunderbar.

Jetzt wollte ich da noch ein OR einbauen:

criteria.add(Restrictions.or(
criteria.createCriteria("projekt").createCriteria("projektLeiter").add(Restrictions.eq("id",empId.intValue())),
criteria.createCriteria("projekt").createCriteria("arbeitsteam").createCriteria("mitarbeiter").add(Restrictions.eq("id", empId.intValue())))
);

Aber da schreit der Compiler, dass er sich ein Criteria und kein Creterion erwartet. Wie schafft man das trotzdem?

Danke!
Markus


Top
 Profile  
 
 Post subject:
PostPosted: Mon Feb 23, 2009 5:09 am 
Expert
Expert

Joined: Thu Jan 08, 2009 6:16 am
Posts: 661
Location: Germany
probier mal sowas wie:

Code:
criteria.createCriteria("projekt").createAlias("projektLeiter", "pl").createAlias("arbeitsteam", "at").createAlias("at.mitarbeiter", "atm").add(Restrictions.or(Restrictions.eq("pl.id",empId.intValue()), Restrictions.eq("atm.id", empId.intValue()))));


Ich denke es wird immer noch nicht funktionieren, aber es gibt dir zumindest nen Hinweis, wie das or anzuwenden ist. ;-)

_________________
-----------------
Need advanced help? http://www.viada.eu


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 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.