-->
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.  [ 1 post ] 
Author Message
 Post subject: Criteria und (komplizierter) Join
PostPosted: Tue Jun 10, 2008 2:50 am 
Newbie

Joined: Tue Jun 10, 2008 2:40 am
Posts: 1
Hallo,

ich habe eine Frage zu Criteria in Hibernate 3.0 in Verbindung mit mySQL 5. Ich habe folgende Tabellen mit den angegegeben Spalten (Ausschnitt):

Project:
id (primary key)
projectmanager (foreign key auf Userdata)
salescontact (foreign key auf Userdata)

Task:
id (primary key)
project (foreign key auf Project)
userdata (foreign key auf Userdata)

Userdata:
id (primary key)

Nun brauche ich mittels Criteria folgende Abfrage:

Jedes Project, indem user x entweder einen Task hat oder projectmanager oder salescontact ist.

Folgenden Code habe ich bisher:

Code:
Criteria crit = getSession().createCriteria(Project.class);
crit.createCriteria("Task").add(Restrictions.eq("userdata", thisuser));


Das klappt auch schon ganz gut. Nur fehlen leider die beiden "or projectmanager" und "or salescontact".

Ich hoffe, irgendwer kann mir helfen :)

Grüße,
Sebastian

PS: Mittels createQuery kriege ich es hin, allerdings ist das nicht optimal, da noch weitere WHERE-Bedingungen dazukommen und diese abängig von Bedingungen sind. Das ist viel unschöner Code, den ich mittels Criteria wieder schön machen möchte.


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

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.