We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Group conditiond together (A and B or C...)
Entity from = from(Entity.class); OnGoingLogicalCondition condition = condition(from.getCode()).eq("test").or(from.getCode()).eq("test2"); where(from.getName()).eq("test").and(condition); Query<Entity> select = select(from);