How to insert row in table using
<dependency>
<groupId>com.querydsl</groupId>
<artifactId>querydsl-jpa</artifactId>
</dependency>
For update I found JPAUpdateClause For delete I found JPADeleteClause
But how to insert row?
How to insert row in table using
<dependency>
<groupId>com.querydsl</groupId>
<artifactId>querydsl-jpa</artifactId>
</dependency>
For update I found JPAUpdateClause For delete I found JPADeleteClause
But how to insert row?
Since may 2020 QueryDsl JPA now support insert statements.
See this pull request, that was merged on may 28th: https://github.com/querydsl/querydsl/pull/2421