Hi there, Let's say I have a persistent class Item with a quantity field and a price field. Is there a way to build a Criteria that calculates the sum of quantity*price?
|
|
I think you can also use an SQL projection. It should be something like:
Ori |
||
|
|
|
|
Hi, It's not exactly what you asked for, but you can use "derived properties" to get something rather similar. For example, you can map a totalPrice property to an SQL expression:
The SQL formula "quantity * price" is evaluated every time the entity is retrieved from the database. Ori The Hibernate docs contain more info about this. |
||
|
|
|
|
It is (probably) not possible to do it with Criteria. But HQL can be helpful for this.
|
||
|
|
