Details
-
Type:
Improvement
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 4.0-beta1
-
Component/s: None
-
Labels:None
Description
Currently, if I have
criterion.and(condition1).and(condition2).and(condition3)
the sql output will look like
((condition1 and condition2) and condition3)
Instead the sql output should look like
(condition1 and condition2 and condition3)