-
``` java
StringExpression caseWhen = new CaseBuilder() .when(expenses.code.in(SPECIAL_EXPENSES, EXTRA_EXPENSES))
.then("Special expenses")
.otherwise("FI…
-
Hi,
I have in my database (mariadb) a Time field whose value is 00:00:00. My entity defines a java.util.Date field to store that value. The problem is that when I retreive that entry from the databa…
Nejaa updated
8 years ago
-
Hi,
I'm developing a project with Spring Data JPA & QueryDSL (latest versions)
Please consider the given code snippet,
```
public static Predicate searchReservedSlots(userId) {
QReservedTimeSlot r…
-
The HibernateDomainExporter and the JPAAnnotationProcessor seem to produce different results. Moreover, the JPAAnnotationProcessor produces an unusable result with PathInit Problems.
Functional Resu…
-
I'm trying to use query dsl as predicates for spring data jpa finders.
As a simple example I tried this:
`QAccountListView accountListView = QAccountListView.accountListView;`
`BooleanExpression que…
-
When I use **limit** clause with JPAQuery it gives me the following error:
```
Caused by: org.hibernate.exception.SQLGrammarException: could not extract ResultSet
at org.hibernate.exception.inter…
-
first of all an apology, I'm not entirely sure this issue is your responsibility, hopefully, it is, and i'm not just wasting your time
MathExpressions.log(n, b) produces jpql with reversed order of a…
-
It doesn't convert to enum in case of "in" and "out" queries.
And exception as a result:
> Caused by: java.lang.IllegalArgumentException: Parameter value [ACTIVE] did not match expected type [com.**…
-
I need optimize a dynamic query. This an example, but it has more filters (BooleanExpression)
```
QTable qtable = QTable.table;
BooleanExpression pSubQueryFilter = qtable.field4.in(List).and((date !…
-
Hello,
You have here a very interesting project that I would like to use. My question is, does it work with last version of QueryDSL SQL 4.1.0?
Thank you.