-->
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: NHibernate - Einfache Query???
PostPosted: Mon Feb 23, 2009 8:14 am 
Newbie

Joined: Mon Feb 23, 2009 7:50 am
Posts: 2
Hallo Welt,

ich arbeite mit C# und bin gerade dabei die Welt von NHibernate zu erschliessen. Leider scheitere ich schon an einer (einfachen) Query.
Folgendes Problem:
Ich habe eine Klasse Person, welche eine Liste mit Telefonnummern (string) hat:
Code:
class Person
{
  ...
  List<string> telefon;
  public List<string> Telefonnummern
  {
    get { return telefon; }
    set { telefon = value; }
  }
  ... 
}


In der Datenbank habe ich die beiden Tabellen
Code:
person
{
  id int,
  name text,
  ...
}

und
Code:
telefonnummern
{
  id_person int,
  telefon text
}

Das Mapping sieht so aus:

Code:
<class name="Person" table="person">
    <id name="ID">
      <generator class="identity" />
    </id>
    <property name="Name" />
    <set name="Telefonnummern" table="telefonnummern">
      <key column="id_person" />
      <element column="telefon" type="string"/>
    </set>
    ...
</class>


Nun möchte ich zu einer Telefonnr. das passende Person-Objekt bekommen, nur wie?
Wie kann muss die Query aussehen?


Top
 Profile  
 
 Post subject: Kann ja nicht so schwer sein???
PostPosted: Tue Feb 24, 2009 2:12 pm 
Newbie

Joined: Mon Feb 23, 2009 7:50 am
Posts: 2
Halli Hallo,

also ich bin immer noch keinen Schritt weiter. Irgendwie stelle ich mich zu doof an.

Wie kann ich denn erstmal die List<string> mappen?

Wenn ich folgendes Mapping verwende:
Code:
<class name="Person" table="person">
    <id name="ID">
      <generator class="identity" />
    </id>
    <property name="Name" />
    <set name="Telefonnummern" table="telefonnummern">
      <key column="id_person" />
      <element column="telefon" type="string"/>
    </set>
    ...
</class>

funktioniert es nur, wenn ich in meiner Klasse ein NHibernate.Collection.PersistentSet verwende:

Code:
NHibernate.Collection.PersistentSet telefon;
  public NHibernate.Collection.PersistentSet Telefonnummern
  {
    get { return telefon; }
    set { telefon = value; }
  }

Ich würde aber gern ein List<string> verwenden (siehe oben).
Wenn ich
Code:
List<string> telefon;
  public List<string> Telefonnummern
  {
    get { return telefon; }
    set { telefon = value; }
  }
benutze, kommt eine "Invalid Cast (check your mapping for property type mismatches);"

Wie sollte das Mapping den aussehen???


Top
 Profile  
 
 Post subject:
PostPosted: Tue Feb 24, 2009 3:14 pm 
Senior
Senior

Joined: Thu Jan 08, 2009 3:48 pm
Posts: 168
http://www.hibernate.org/hib_docs/v3/re ... s-ofvalues

Da Du soweit ich sehe keine Spalte für die Sortierung hast solltest Du bag statt list nehmen. Der Typ im Objekt selbst bleibt List.
Ich weiss nicht wie es in NHibernate ist aber sonst sollte laut Namenskonventionen der Collection oder Property Name klein geschrieben werden.

Code:
<bag name="telefonnummern"
table="telefonnummern">
<key column="id_person"/>
<element column="telefon" type="string"/>
</bag>


Rating ist willkommen.


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.