Hello, I wonder if it would be useful and feasible to have the possibility to define a <customClause> in an operationBinding, which will contain free sql (as a <customSQL> clause), and where the only requirement is to maintain the order the generated SQL, so I may define a query like this:
I've tried to put the 'FOR UPDATE' after the defaultWhereClause, but the automatically generated joins are written after the entire <whereClause> tag.
Code:
<selectClause>$defaultSelectClause</selectClause> <tableClause>$defaultTableClause</tableClause> <whereClause>$defaultWhereClause</whereClause> <customClause>FOR UPDATE OF foo.bar</customClause>
Comment