-->
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: XML design Problem...
PostPosted: Fri Mar 17, 2006 8:33 am 
Newbie

Joined: Tue Mar 07, 2006 4:56 am
Posts: 17
Hallo zusammen,

ich arbeite zwar mit nHibernate (also .net), aber mein Problem ist eher designerischer Natur.

Ich habe eine Klasse namens "Outlet", die durch eine Tabelle "Outlet" wieder gespiegelt wird. Nun gibt es eine zweite Tabelle mit dem Namen "OutletExt", in der noch zusatzinformationen zu diesem Outlet abgelegt sind. Die beiden Tabellen stehen in einem One-To-One verhältniss.

Ich möchte diese Zusatzfelder aus "OutletExt" jetzt gerne Transparent in meiner "Outlet" Klasse unterbringen.

Muss ich für beide Tabellen eine extra Klasse bauen? Wie gestalte ich das XML? Mit "subclass" oder "joined-subclass" oder einfach "one-to-one"?

Ich bin für jeden Tip dankbar!

Gruß, Marco...


Top
 Profile  
 
 Post subject:
PostPosted: Fri Mar 17, 2006 1:17 pm 
Regular
Regular

Joined: Tue Mar 07, 2006 11:18 am
Posts: 54
Location: Berlin
Hallo

erzeuge doch eine Basisklasse "Outlet" und leite von dieser klasse ab --> "OutletExt" extends "Outlet". Dann kannst du ein table per class DB Design erstellen und mit joint subclass das mapping erstellen.

Ich denke das ist desingtechnisch die beste lösung.


mfg simon


Top
 Profile  
 
 Post subject:
PostPosted: Mon Mar 20, 2006 7:51 am 
Regular
Regular

Joined: Tue Jan 03, 2006 9:52 am
Posts: 52
Location: Zurich
In der Doku findest du, wie man das macht:
Quote:
5.1.18. join

Using the <join> element, it is possible to map properties of one class to several tables.



Code:
<class name="Person"
    table="PERSON">

    <id name="id" column="PERSON_ID">...</id>

    <join table="ADDRESS">
        <key column="ADDRESS_ID"/>
        <property name="address"/>
        <property name="zip"/>
        <property name="country"/>
    </join>
  ...


Gruss Urs


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.