Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
607 views
in Technique[技术] by (71.8m points)

java - Please provide example for an If statement in hibernate criteria

How do you write criteria on if condition using hibernate criteria.

My query that needs to be transformed is

SELECT date, product, IF(type = 'msrp', amount, 0) price, 
     IF(type != 'msrp', amount, 0) tax FROM productdetail group by date, product;

Please provide the right usage of if statement in hibernate criteria.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

As @JBnizet said,This is not supported by the criteria API. unless you are using NHibernate

if your using NHIbernate

  Projections.Conditional(
         Restrictions.EqProperty(..............

But here are my possible solutions with Hibernate.

1)You can use the same query By using NativeSqlQuery in such type of situations

2)Or by using HQL.There is an expression in HQL called case when.This might be helpful Using a CASE statement in HQL select


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...