How to use database-specific functions?
val query = jpql {
select(
function(
String::class,
"GROUP_CONCAT",
path(Book::name)
)
).from(
entity(Book::class)
)
}Registering the function in your JPA provider
Hibernate
PreviousWhat is the difference between Kotlin JDSL and jOOQ and QueryDSL?NextHow to build dynamic queries?
Last updated