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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T05:11:29+00:00 2026-05-20T05:11:29+00:00

I have an Entity. And sometimes I need this object also contains some value,

  • 0

I have an Entity. And sometimes I need this object also contains some value, call it ‘depth’. The query may look like 'select b.id, b.name, b..., count(c.id) as depth from Entity b, CEntity c where ...'. So I’ve created class NonHibernateEntity which extends Entity. And then results of query written above are perfectly stored as List of NonHibEntity, which consists of all the fields of Entity (as they are extended), and property ‘depth’. I make it by setting aliasToBean results transformer: .setResultTransformer(Transformers.aliasToBean(NHEntity.class)).
But, it is annoying and inconvenient – to specify all the aliases of all the needed fields.
And then, if I want to save one of this object to DB – session.saveOrUpdate((Enity)nHibEntity) – there are an exception about nHibEntity isn’t Hibernate Entity.

I heard about storing ‘entity’ as field in NonHibEntity (aggregation, not inheritance). But it seems this is rather inconvenient too.
What do you think? What is an appropriate solution?

  • 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-20T05:11:30+00:00Added an answer on May 20, 2026 at 5:11 am

    If somebody want to know – I solved this problem in such way:

    just made this calculated field as @Transient, and then

    List<BaseEntry> result = new ArrayList<BaseEntry>();
        Iterator it =  session()
        .createQuery("select b, (select count(p.id) as depth from BaseEntry p " +
                "   where ... ) as d" +
                " from BaseEntry b " +
                " where ... ")
        .list().iterator();
        while ( it.hasNext() ) {
            Object[] row = (Object[]) it.next();
            BaseEntry entry = (BaseEntry) row[0];
            Long d = (Long) row[1];
            entry.setD(d);
            result.add(entry);
        }
        return result;
    

    It works good, and seems that it can be easily supported in future

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

Sidebar

Related Questions

Lets say I have an entity Foo, and it contains a list of another
In my Core Data managed object model, I have an entity Foo with a
I'm sure most people who use the entity framework sometimes need an entity only
i have a input tag which is non editable, but some times i need
I have an entity that maps to an external oracle table which is one
I have an entity class that has a property with an underlying db column
Here's what I'm trying to do : I have an entity Task with a
Using NHibernate.Mapping.Attributes, I have a entity class with something like: [Class] public class EntityA
I have the following entity class (in Groovy): import javax.persistence.Entity import javax.persistence.Id import javax.persistence.GeneratedValue
I have the following entity structure: public class Party { public Int32 PartyId {

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.