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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T07:09:06+00:00 2026-05-23T07:09:06+00:00

I have entity objects: @Entity public class Tag { @Id private Long id; @Transient

  • 0

I have entity objects:

@Entity
public class Tag {

    @Id
    private Long id;

    @Transient
    private int count;

    // getter, setter etc..
}

@Entity
public class Request {

    // fileds

    @ManyToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY)
    private Set<Tag> tag = new HashSet<Tag>();

    // getter, setter etc..
}

I need to get all tags with count by Request.

In DAO I make function for it with SQL query:

select tag as id, count(rt.request) as count
from request_tag rt
where rt.request in  (...) and rt.request in (...) and etc...
group by rt.tag order by count desc

Tags found but count isn’t binding.

How can I bind count from query?

PS:

  1. I don’t want to remove @Transient annotation (because I don’t want keep count in DB).

  2. I don’t want to use @Formula (because it will be slow).

  • 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-23T07:09:07+00:00Added an answer on May 23, 2026 at 7:09 am

    Option 1:
    Create named query with select tag as id, count(rt.request) as count, after execution you will get Object[2] cast as expected and use.

    Option 2:
    You can create yet another entity (saying TagStatistic) without @Transient
    and map it to native(!) named query

    @Entity
    @Table(name = "Tag")//map to the same table
    @NamedNativeQueries({
      @NamedNativeQuery(name ="TagStatistic.someName",
              resultClass =  TagStatistic.class,
              query = "select tag as id, count(rt.request) as count ....
    ...
    public class TagStatistic{
    ...
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following @OneToOne relation: @Entity @Table(name=USER) public class User implements Serializable{ private
Using NHibernate.Mapping.Attributes, I have a entity class with something like: [Class] public class EntityA
I have the following entity structure: public class Party { public Int32 PartyId {
I have the following poco class: public class Category : IDisplayName { private ICollection<Category>
Technology: Hibernate 3.0 Suppose i have Entity class Company @Entity @Table(name=tbl_companies) public class Company
I have a collection of custom entity objects one property of which is an
I have an entity class that has a property with an underlying db column
I have the following entity class (in Groovy): import javax.persistence.Entity import javax.persistence.Id import javax.persistence.GeneratedValue
In my class Case I have an IDictionary with Entity (a class) as key
Entity Framework 4, POCO objects and ASP.Net MVC2. I have a many to many

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.