Tagged Questions

3
votes
2answers
118 views

How to add property counted in DB to @Entity class?

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 ...
2
votes
4answers
285 views

how to return Map<Key, Value> with HQL

i have a table Permission: id name desc what i am doing right now is to make a query that returns a permission object then put the values in the map programmatically 1- But i was wondering if ...
1
vote
3answers
123 views

hibernate: how to map a Set association so that HQL order by is preserved

OK, this looks mostly like (another) bug/unimplemented functionality in Hibernate. Is it possible to map a Set association in such a way that the "order by" clause in HQL is respected? For example, ...
0
votes
4answers
3k views

Map entity using query in Hibernate

consider table sales (id, seller_id, amount, date) and here is a view that is generated from sales using query SELECT seller_id, SUM(amount) FROM sales GROUP BY seller_id total_sales (seller_id, ...