Hibernate Criteria API Equivalent to Oracle's Decode - Stack Overflow
What would the equivalent of Oracle's DECODE() function be in the Hibernate Criteria API? An SQL example of what I need to do: SELECT DECODE(FIRST_NAME, NULL, LAST_NAME, FIRST_NAME) as NAME ORDER......