kotlin-jdsl icon indicating copy to clipboard operation
kotlin-jdsl copied to clipboard

Kotlin library that makes it easy to build and execute queries without generated metamodel

Results 17 kotlin-jdsl issues
Sort by recently updated
recently updated
newest added

### 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...

documentation

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...

documentation

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...

enhancement

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...

question

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...

question

### 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...

enhancement

# 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...