-->
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: one-to-many + Criteria
PostPosted: Wed Oct 17, 2007 2:17 pm 
Newbie

Joined: Wed Oct 17, 2007 10:31 am
Posts: 3
Hallo!

Ich habe folgende unidirektionale Beziehung zwischen den Tabellen Person und Memos
<class name="myPackage.Person" table="Person">
<id name="pid" type="int">
<column name="pid" />
<generator class="assigned" />
</id>
...
<set name="memos" cascade="all" lazy="true">
<key column="mpid"/>
<one-to-many class="myPackage.Memos"/>
</set>
</class>

<class name="myPackage.Memos" table="Memos">
<property name="mpid" type="int">
<column name="mpid" />
</property>
<property name="memkz" type="string">
<column name="memkz" length="7">
</column>
</property>
mpid enthaelt die Person-Id des Memos.
Ich will nun folgende Query stellen:
"Gib mir alle Personen mit id<10 ODER memos.bezeichnung="test" "
, d.h ich will alle Personen mit einer Id<10, unabhaengig davon, ob diese ueberhaupt ein Memo haben, und die Personen mit einem "test"-memo.

Ich benutze die DetachedCriteria-Api:
dsadrCriteria.createAlias("memos","mem").add(Restrictions.disjunction().add(Restrictions.le("pid", 10)).add(Restrictions.eq("mem.memkz", "test")));

-> das liefert mir nur die Personen mit test-memo + die Personen mit id<10, die ueberhaupt ein memo besitzen, nicht jedoch die Personen mit id<10, die kein Memo besitzen.

Ich brauche warhscheinlich ein left-join auf die memos,
mit
personCriteria.createAlias("memos","mem", Criteria.LEFT_JOIN). ...
funktioniert's aber auch nicht.

Was mache ich falsch?

Gruss,
gizeh


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.