or without local variable ``` XTable.select { ...
# exposed
t
or without local variable
Copy code
XTable.select { 
    (XTable.c1 eq v1) and (XTable.c2 eq v2) 
}.apply {
   if (condition) {
       adjustWhere { this!! and (XTable.c3 eq v3) }
}.forEach {}
👍 1