-->
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.  [ 5 posts ] 
Author Message
 Post subject: problems with one-to-one
PostPosted: Fri Sep 08, 2006 5:29 am 
Newbie

Joined: Fri Sep 01, 2006 8:45 am
Posts: 9
Hello.

If two classes "DbUser" (parent class) and "DbUserData" (child class) with an one-to-one mapping.

In my example (that works) the UserId where given by DbUserData but thats not what i want. I want that the UserId is given by DbUser because it is the parent class and DbUser must also give die Id to other classes like DbUserData. I hope it's understandable.

the code of DbUser is:
Code:
    public class DbUser
    {
        private int _idUser;
        private DbUserData _dbUserData;

        public DbUser()
        {
            _idUser = 0;
            _dbUserData = new DbUserData();
            _dbUserData.User = this;
        }

        public int IdUser
        {
            get { return _idUser; }
        }

        public DbUserData DbUserData
        {
            get { return _dbUserData; }
            set { _dbUserData = value; }
        }
    }


and the mapping file looks like this:
Code:
   <class name="DbUser" table="DbUser">

      <id name="IdUser" column="IdUser"  access="field.camelcase-underscore" type="Int32">
         <generator class="foreign">
            <param name="property">DbUserData</param>
         </generator>
      </id>

      <one-to-one name="DbUserData" class="DbUserData" />
   </class>


the code of DbUserData:

Code:
    public class DbUserData
    {
        private int _userId;
        private string _name;
        private string _password;
        private DbUser _user;

        public DbUser User
        {
            get { return _user; }
            set { _user = value; }
        }

        public int UserId
        {
            get { return _userId; }
            set { _userId = value; }
        }

        public string Name
        {
            get { return _name; }
            set { _name = value; }
        }

        public string Password
        {
            get { return _password; }
            set { _password = value; }
        }

        public DbUserData()
        {
            _name = "";
            _password = "";
        }
    }


and the mapping file:
Code:
   <class name="DbUserData" table="DbUserData">

      <id name="UserId" column="UserId" unsaved-value="0" access="field.camelcase-underscore" type="Int32">
         <generator class="identity"/>
      </id>

      <property name="Name" access="field.camelcase-underscore" column="Name" type="AnsiString" not-null="true"/>
      <property name="Password" access="field.camelcase-underscore" column="Password" type="AnsiString" not-null="true"/>
      
      <one-to-one name="User" class="DbUser" />
   </class>


When i try to change the generator tags to:
DbUser:
Code:
      <id name="IdUser" column="IdUser" unsaved-value="0" access="field.camelcase-underscore" type="Int32">
         <generator class="identity"/>
      </id>


DbUserData:
Code:
      <id name="UserId" column="UserId" access="field.camelcase-underscore" type="Int32">
         <generator class="foreign">
            <param name="property">User</param>
         </generator>
      </id>


then the data of DbUserData will not be saved.
Can anyone say me why?

PS: Please excuses my english :)

regards
Kesch


Top
 Profile  
 
 Post subject: Re: problems with one-to-one
PostPosted: Fri Sep 08, 2006 8:18 am 
Beginner
Beginner

Joined: Wed Aug 03, 2005 8:06 am
Posts: 40
Location: Netherlands
Hi,

This looks much like the NHibernate doc ch. 18.2, where they use an 'assigned' key combined with a constrained one-to-one mapping to the associated class. Did you try that or didn't that work for you?


Top
 Profile  
 
 Post subject:
PostPosted: Fri Sep 08, 2006 8:37 am 
Newbie

Joined: Fri Sep 01, 2006 8:45 am
Posts: 9
Hey.

Thanks for the answer.

Is is similar but the difference is:
in doc ch. 18.2 the author has an attribute person and the same in my
excample would be person has an attribute author. and then i can't
generate the id by person. do you now what i mean?

regards
kesch


Top
 Profile  
 
 Post subject:
PostPosted: Fri Sep 08, 2006 9:37 am 
Newbie

Joined: Fri Sep 01, 2006 8:45 am
Posts: 9
i've updated my mapping files

DbUser:
Code:
   <class name="DbUser" table="DbUser">

      <id name="IdUser" column="IdUser" unsaved-value="0" access="field.camelcase-underscore" type="Int32">
         <generator class="identity"/>
      </id>

      <one-to-one name="DbUserData" class="DbUserData" />
   </class>


DbUserData:
Code:
   <class name="DbUserData" table="DbUserData">

      <id name="UserId" column="UserId" unsaved-value="0" access="field.camelcase-underscore" type="Int32">
         <generator class="assigned" />
      </id>

      <property name="Name" access="field.camelcase-underscore" column="Name" type="AnsiString" not-null="true"/>
      <property name="Password" access="field.camelcase-underscore" column="Password" type="AnsiString" not-null="true"/>

   </class>


now the mapping files are conform to my objects but it doesn't work. DbUserData where not saved. why?
i hope anyone can help me.

regards
kesch


Top
 Profile  
 
 Post subject:
PostPosted: Sat Sep 09, 2006 3:22 am 
Newbie

Joined: Fri Sep 01, 2006 8:45 am
Posts: 9
i'm stupid .... i've forgotten to flush() .... now it works ;)

regards
kesch


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 5 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.