We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Criteria.where(Condition) will support the construction of dynamic where clauses.
Criteria.where(Condition)
val noCondition = Conditions.just("1 = 1") val condition = noCondition.and("name = :name").or(...) client.select() .from("table") .matching(Criteria.where(condition)) .fetch()