Hello again and thank you for these new (coming) features.

Could it be possible to have same type of functionality for creating joins?

Now there are functions:

                    leftOuterJoin(JoinType jointType, String sql)
                    leftOuterJoin(JoinType jointType, TableLike<?> table)
                    leftOuterJoin(JoinType jointType, String sql, Object... 
bindings)
                    leftOuterJoin(JoinType jointType, String sql, 
QueryPart... parts)

for all join types.

My proposal is to have also these:

                    enum JoinType { JOIN, LEFT_OUTER_JOIN, 
RIGHT_OUTER_JOIN, ... }
                    
                    join(JoinType jointType, String sql)
                    join(JoinType jointType, TableLike<?> table)
                    join(JoinType jointType, String sql, Object... bindings)
                    join(JoinType jointType, String sql, QueryPart... parts)

What is your schedule for v2.6?

Cheers,
Jouni

Reply via email to