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 8828517
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T07:37:26+00:00 2026-06-14T07:37:26+00:00

I have an inherited class structure with multiple table. My class structure is as

  • 0

I have an inherited class structure with multiple table. My class structure is as follows.
(This is not the real classes. I have created fake classes which imitate the originals here to save space.)

class Account {
    public virtual int AID { get; set; }
    public virtual string Name { get; set; }
    public virtual string Serial { get; set; }
    public virtual string Type { get; set; }

    public Account { Type = "Default"; }
}

class Human : Account {
    public virtual string FirstName { get; set; }
    public virtual string LastName { get; set; }
    // more properties..

    public Human { Type = "Human"; }
}

class Bank : Account {
    public virtual string BranchName { get; set; }
    // more properties..

    public Bank { Type = "Bank"; }
}

My Account.hbm.xml file looks like below.

  <class name="Account">
    <id name="AID" type="Int32">
      <generator class="native" />
    </id>
    <discriminator column="Type" type="string" />
    <property name="Name" />
    <property name="Serial" />
    <property name="Type" />

    <subclass name="Human" discriminator-value="Human">
      <join table="Account">
        <key column="AID" />
        <property name="FirstName" />
        <property name="LastName" />
      </join>
    </subclass>

    <subclass name="Bank" discriminator-value="Bank">
      <join table="Account">
        <key column="AID" />
        <property name="LocationName" />
      </join>
    </subclass>    
  </class>

I execute this and tables are created with the correct set of fields. Problem is when I insert the record.

I do it as of below.

Bank bank = new Bank();
bank.Name = "Any Name";
bank.Serial = "0001";
bank.BranchName = "Local CIty";

using (ISession session = NHibernateHelper.OpenSession())
{
    using (ITransaction transaction = session.BeginTransaction())
    {
        session.Save(bank);
        transaction.Commit();
    }
}

Below is the error produced by NUnit. Maybe I am doing somehting wrong. Can any one help me on this please?

NHibernate.PropertyValueException : Error dehydrating property value for 
xxxx.xxxxx.Bank.Name
  ----> System.IndexOutOfRangeException : Parameter index is out of range.
  • 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-14T07:37:27+00:00Added an answer on June 14, 2026 at 7:37 am

    I modified the Account.hbm.xml mapping file with cluase. Now the things work fine. I can smoothly insert records now without any errors.

    Here is the working mapping file.

      <class name="Account">
        <id name="AID" type="Int32">
          <generator class="native" />
        </id>
        <!-- <discriminator column="Type" type="string" /> -->
        <property name="Name" />
        <property name="Serial" />
        <property name="Type" />
    
        <joined-subclass name="Human" table="Human">
          <key column="AID" />
          <property name="FirstName" />
          <property name="LastName" />
        </subclass>
    
        <joined-subclass name="Bank" table="Bank">
          <key column="AID" />
          <property name="LocationName" />
        </subclass>    
      </class>
    

    I thought may be discriminator clause might be helpful and overused. 🙂 Without it works fine.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have inherited code which contains static nested classes as: public class Foo {
I have a structure of base class and a couple of inherited classed. Base
I have a text editor like program which is a QMainWindow inherited class. There,
I have 3 abstract classes (Customer, Tender, Site). For Customer has inherited class such
I have a abstract base class that I have many inherited classes coming off
I inherited this Kohana project and have little experience with it and ORM. Table
i have an application class inherited from QtGui.QDialog. I have to reload show-function but
I have a parent class and child class (inherited from parent). In the child
I have QStringListModel QStringListModel* blocksModel = new QStringListModel(); And a class inherited from the
In my iPad App, I have one custom class inherited from UIButton. I am

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.