Search code examples
nhibernatehibernatehql

Using a CASE statement in HQL select


Is there any way to do the following in HQL:

SELECT 
    case when flag = true then SUM(col1) else SUM(col2)
FROM 
    myTable

Solution

  • I guess you can (3.6, 4.3) [inline edit] ...for where-clauses:

    "Simple" case, case ... when ... then ... else ... end, and "searched" case, case when ... then ... else ... end