kotlin-jdsl
kotlin-jdsl copied to clipboard
Kotlin library that makes it easy to build and execute queries without generated metamodel
### Backgrounds - Someone might wonder why Kotlin JDSL returns a nullable list in the Spring Support module. ### Objects - Documenting FAQ of why Kotlin JDSL returns a nullable...
spring data add support for kotlin value class at version [3.2](https://github.com/spring-projects/spring-data-commons/releases/tag/3.2.0) , so we can define an entity like this to avoid primitive obsession: ``` kotlin import jakarta.persistence.* @Entity class...
Hi! Does kotlin-jdsl support spring data reactive queries? We are using Spring Data R2DBC with Postgres with CoroutineCrudRepository to query our database asynchronously. We are considering using kotlin-jdsl and I'm...
Hello, I was about to use kotlin-jdsl with Room on Android(Of course I know that SQLite support isn't even on the roadmap yet), and a question came up, so I...
Hi I don't know if you are aware of this, but the findPage(pageable: Pageable) method does not fully cope with Sort from Spring. It manages to pass the direction and...
### Backgrounds * `queryDSL` has selectFrom function and users migrating from QueryDSL to Kotlin-JDSL are forced to use the `select()` `from()` functions or develop an `selectFrom` extension function and use...
# Motivation - queryDSL's selectFrom function # Modifications - add selectFrom spec in kotlinJdsl # Result - Users no longer need to call the `select()` and `from()` functions respectively when...