Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7941359
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T23:38:53+00:00 2026-06-03T23:38:53+00:00

I got an exception null id generated for AccountDetail when mapping one-to-one relationship by

  • 0

I got an exception “null id generated for AccountDetail” when mapping one-to-one relationship by using many-to-one with unique constraint.

Here’s my SQL tables:

Account(Id, Name)
AccountDetail(AccountId, Remark)

AccountId is both primary and foreign key.

Here’s my Domain Model (Account and AccountDetail):

public class Account
{
    public virtual int Id { get; set; }

    public virtual string Name { get; set; }

    public virtual AccountDetail Detail { get; set; }

    public Account()
    {
        Detail = new AccountDetail
        {
            Account = this
        };
    }
}

public class AccountDetail
{
    public virtual int AccountId { get; set; }

    public virtual Account Account { get; set; }

    public virtual string Remark { get; set; }
}

Mapping (NHibenrate 3.3 mapping by code):

class AccountMap : ClassMapping<Account>
{
    public AccountMap()
    {
        Table(typeof(Account).Name);

        Id(c => c.Id, m => m.Generator(Generators.Native));

        Property(c => c.Name);

        OneToOne(c => c.Detail, m =>
        {
            m.Constrained(true);
            m.Cascade(Cascade.All);
          m.PropertyReference(typeof(AccountDetail).GetPropertyOrFieldMatchingName("Account"));
        });
    }
}

class AccountDetailMap : ClassMapping<AccountDetail>
{
    public AccountDetailMap()
    {
        Table(typeof(AccountDetail).Name);

        Id(c => c.AccountId, m =>
        {
            m.Column("AccountId");
            m.Generator(Generators.Foreign<AccountDetail>(x => x.Account));
        });

        Property(c => c.Remark);

        ManyToOne(c => c.Account, m =>
        {
            m.Column("AccountId");
            m.Unique(true);
        });
    }
}

BTW: Can I remove the AccountId property in AccountDetail? That is, only use the Account property. Using both AccountId and Account properties in AccountDetail class looks not so object-oriented.

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T23:38:54+00:00Added an answer on June 3, 2026 at 11:38 pm

    I can’t say what’s actually wrong, but comparing with my working one-to-one relation, I would map it like this:

    class AccountMap : ClassMapping<Account>
    {
        public AccountMap()
        {
            Table(typeof(Account).Name);
    
            // creates a auto-counter column "id"
            Id(c => c.Id, m => m.Generator(Generators.Native));
    
            // doesn't require a column, one-to-one always means to couple primary keys.
            OneToOne(c => c.Detail, m =>
            {
                // don't know if this has any effect
                m.Constrained(true);
    
                // cascade should be fine
                m.Cascade(Cascade.All);
            });
        }
    }
    
    class AccountDetailMap : ClassMapping<AccountDetail>
    {
        public AccountDetailMap()
        {
            Id(c => c.AccountId, m =>
            {
                // creates an id column called "AccountId" with the value from
                // the Account property.
                m.Column("AccountId");
                m.Generator(Generators.Foreign(x => x.Account));
            });
    
            // should be one-to-one because you don't use another foreign-key.
            OneToOne(c => c.Account);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got exception about convert NULL to Int32. I've got a table from database
I am using following datatype in my database . but I got exception as
I am using Hibernate and got the exception ArrayIndexOutOfBoundsException. What are the possible causes?
I've got common mapping <class name=NotSyncPrice, Portal.Core table='Not_sync_price'> <id name=Id unsaved-value=0> <column name=id not-null=true/>
I got this exception ... EntityCategoryProxy could not be converted to int in ...
I got a strange exception when trying to find out if a property in
I got this error Unhandled exception at 0x0049b946 in Program.exe: 0xC0000005: Access violation reading
I got an out of memory exception in a photo editor thingy i was
I got the following Design time exception for my control in WPF System.NotImplementedException The
i got a webservicedefinition like this: [OperationContract] [FaultContract(typeof(Exception))] [WebInvoke(ResponseFormat = WebMessageFormat.Xml, BodyStyle = WebMessageBodyStyle.Wrapped,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.