-->
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: Mapping Probleme mit "lazy" Attribut
PostPosted: Thu Jun 29, 2006 8:26 am 
Newbie

Joined: Thu Jun 29, 2006 6:47 am
Posts: 3
Hallo

Also ich beschäftige mich noch nicht sehr lange mit hibernate. Ich hab mir gerade lazy loading angeschaut und dabei einige probleme.

(Ich verwende NHibernate Build 1.0.2.0 und .Net 2.0)

Als erstes kann ich für "property", "one-to-one" das "lazy" attribut nicht definieren (obwohl dies laut dokumentation funktionieren müsste. (Beim laden der Mapping Files erhalte ich eine Mapping Exception).

Ein weiteres Problem ist, dass ich zwar das "lazy"-attribut für meine Collection und die Subklasse definieren kann, dies aber keine auswirkung hat.

Code:
<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.0">
  <class name="Tree.TreeItem, NHTest" table="TreeItem" lazy="true">
    <id name="ID" column="ID" type="Int32" unsaved-value="0">
      <generator class="native" />
    </id>

    <property name="Name" type="String"/>

    <!-- Parent Item -->
    <many-to-one  name="Parent"
                  column="ParentID"
                  class=" Tree.TreeItem, NHTest "/>
    <!--
    Funktioniert, aber kein lazy loading
    <one-to-one name="Parent"
                class="Tree.TreeItem, NHTest"/>
    -->

    <!-- Owner -->
    <many-to-one  name="Owner"
                  column="CreatedBy"
                  class="User, NHTest"/>

    <!--
    Funktioniert, aber kein lazy loading
    <one-to-one name="Owner"
                class="BusinessObjects.User, SuitPrototypeA"/>
    -->

    <!-- Items -->
    <bag name="Items" order-by="Name" lazy="true">
      <key column="ParentID"/>
      <one-to-many class="Tree.TreeItem, NHTest"/>
    </bag>


    <!--
    Subklasse enthält das lazy attribut, hat aber keine auswirkung
    -->
    <joined-subclass
       table="SpecialItem"
       name="Tree.SpecialItem, NHTest"
       lazy="true"
       proxy="Tree.ISpecialItem, NHTest">
      <key column="ItemID"/>
      <property name="Size"
                type="Double"/>
    </joined-subclass>
    </class>
</hibernate-mapping>


Ich bin mir fast sicher, dass mein problem mit dem mapping file zusammenhängt. Wenns jedoch nötig ist werde ich auch noch die dazugehörigen klassen posten.

Vielen dank für eure tipps schon mal im voraus

gruss


Top
 Profile  
 
 Post subject:
PostPosted: Thu Jul 06, 2006 6:01 am 
Newbie

Joined: Wed Jul 05, 2006 8:49 am
Posts: 7
Location: Zurich
Mit Subklassen kenne ich mich nicht aus, aber ich denke, bei der one-to-one hilft das attribut outer-join.

<one-to-one ... outer-join="false" />


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jul 10, 2006 5:18 am 
Beginner
Beginner

Joined: Fri May 19, 2006 11:34 am
Posts: 29
Hi,

also lazy="true" wird nichts bewirken. Das ist die Standardeinstellung.
Um das lazy-Loading durchzuführen, muss der Parameter lazy="false" lauten.

Viele Grüsse
Kai


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.