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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T16:06:51+00:00 2026-05-11T16:06:51+00:00

I have a class, Order, which I persist to a database using NHibernate. There

  • 0

I have a class, Order, which I persist to a database using NHibernate. There is a folder futher down in the web application that contains an object that inherits from Order, for our purposes, we can call it CustomOrder. I use CustomOrder to place a few properties onto the Order object for UI purposes. The properties don’t actually have to be saved to the database.

When I pass the CustomOrder class to my generic save method that just takes in an Order object, NHibernate complains:

Unknown entity class: CustomOrder.

I don’t need to persist the custom fields to the database, but I’d like to keep this inheritance structure. Am I thinking in the wrong terms or doing something I shouldn’t be doing?

Save Code

public object Save(Order obj, object userID) {
        Order o = (Order)obj;  
        ISession session = NHibernateHelper.GetCurrentSession();
        ITransaction tx = session.BeginTransaction();

        session.Save(o);

After the case in the first line of the method, .NET still identifies it as CustomerOrder.

  • 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-05-11T16:06:51+00:00Added an answer on May 11, 2026 at 4:06 pm
    1. You cannot change the type of a instance in .NET. There is no casting or whatever that makes it possible.
    2. When loading the instance from the DB, NHibernate wants to create the same type you stored. That’s why it wants a mapping for CustomOrder.

    How ever you implement it: you need to create a new instance of Order.

    // get the CustomOrder from somewhere
    CustomOrder customOrder;
    // create an instance of Order and store it.
    session.Save(customOrder.GetOrder());
    
    
    class CustomOrder
    {
    
        // just one of many ways: a method on the CustomOrder to create 
        // instance of Order
        public GetOrder()
        {
            return new Order()
            {
                property1 = this.property1,
                property2 = this.property2,
                property3 = this.property3
            }
        }
    }
    

    You can use Reflection to do this automatically.
    Or take a look at MemberwiseClone().

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

Sidebar

Ask A Question

Stats

  • Questions 120k
  • Answers 120k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You cannot set the Format property using SQL but you… May 12, 2026 at 12:17 am
  • Editorial Team
    Editorial Team added an answer Assuming that you have an list item named MyListItem and… May 12, 2026 at 12:17 am
  • Editorial Team
    Editorial Team added an answer Ok I found the solution on my own after experimenting… May 12, 2026 at 12:17 am

Related Questions

Okay, I think I'm just making a stupid mistake here, but I want to
I have a class, which I have simplified to this: final class Thing {
I have a .NET 3.5 web application for which I have implemented a class
I have a class hierarchy as such: +-- VirtualNode | INode --+ +-- SiteNode

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.