-->
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 über den Key einer Map
PostPosted: Sat Aug 22, 2009 6:22 am 
Newbie

Joined: Sat Aug 22, 2009 6:14 am
Posts: 1
Hallo,


Ich hoffe mir kann einer weiterhelfen:

1. Mein Mapping sieht folgendermaßen aus:

ich habe eine Klasse Materialstandort die 1-n Mitarbieter mit ihren zugehörigen Lohn besitzt.

Auszug aus der Materialstandort - Klasse

Code:
@OneToMany(cascade = CascadeType.ALL)
   @JoinTable(name = "MATERIALSTANDORT_MITARBEITER", joinColumns = { @JoinColumn(name = "MATERIALSTANDORT_ID", nullable = false) }, inverseJoinColumns = { @JoinColumn(name = "LOHN_ID", nullable = false) })
   @MapKeyManyToMany(targetEntity = Mitarbeiter.class, joinColumns = { @JoinColumn(name = "MITARBEITER_ID", nullable = false) })
   public Map<Mitarbeiter, Lohn> getMitarbeiter() {
      return this.mitarbeiter;
   }


Jetzt Möchte ich gerne ein Criteria schreiben, dass mir alle Materialstandorte ausgibt die einen bestimmten Mitarbeiter besitzen.
Das Criteria für die Abfrage der Löhne nach ihrer Währung habe ich hinbekommen:

Code:
final List<?> locations = (List<?>) session.createCriteria(
            Materialstandort.class).createCriteria(
            Materialstandort.MITARBEITER_PROPERTY).setFetchMode("lohn",
            FetchMode.JOIN).add(
            Restrictions.eq(Lohn.WAEHRUNG_PROPERTY, currency)).list();


aber für die Abfrage der Mitarbeiter leider nicht. Ich hoffe Ihr könnt mir weiterhelfen.


Gruß

Dennis


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.