-
I am testing QueryDsl with Custom JPA Repository with following code to dynamic join tables and create JPAQuery and return the result;
```
@Override
public List findAll(Predicate predicate, List join…
-
```
Ok, this might sound silly / crazy... but what about using annotations to
generate helpers at compile time for SQLite usage ? It could be a compile time
JPA implementation, or maybe something co…
-
We are deciding whether to use JPA Criteria or Dynamic Path Usage 3.0.
It makes sense for us to use QueryDSL with statements which completely omit creating objects like PathQuery and impl of JPAQueryB…
-
This [commit](https://github.com/querydsl/querydsl/commit/f5502ef6fed62b3666710b26c68d64640f669cea) breaks compatibility with Java 6 runtimes trying to load the `TemplateFactory`:
```
Caused by: java…
-
The Querydsl documentation seems insufficient for certain advanced cases such as
- dynamic path usage
- FactoryExpression usage
- usage of the Querydsl Maven plugin
Also a proper explanation of the Q…
-
@lvca There is another attempt to get this project of the ground at:
https://github.com/noskovd/spring-data-orient
First tests with latest Spring stack (spring-data, spring-boot) look good...
I am …
-
Generic orderBy using deep paths and left joins is not yet supported in Querydsl JPA http://stackoverflow.com/questions/20287194/generic-querydsl-orderby-dynamic-path-generation-with-left-joins
The i…
-
I am using Nest Library
``` cs
//This works
var descriptor = new SearchDescriptor().Query(q => q.QueryString(qs => qs.Query("myTestString")));
string result = client.Serializer.Serialize(descriptor);…
-
i want to create a dynamic form system on the base querydsl , the database schema can be modified while the application running
-
``` java
SQLQuery query = query();
query.with(fooPathAlias, fooSubqueryExpression);
query.union(barListSubQuery, bazListSubQuery);
query.list();
```
The SQL to manifest does not contain the common ta…