356357358359360361362
} @Override public <E extends Exception> JPAQueryComposer<T> where(Object testLambda) { return applyTransformWithLambda(new WhereTransform(getConfig(), false), testLambda); }
362363364365366367368
} @Override public <E extends Exception> JPAQueryComposer<T> whereWithSource(Object test) { return applyTransformWithLambda(new WhereTransform(getConfig(), true), test); }