Kotlin Jpa Operations
Constructors
Types
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open fun executeUpdate(entityClass: Class<*>, query: String, params: MutableMap<String, Any>): Uni<Int>
Link copied to clipboard
Link copied to clipboard
open fun find(entityClass: Class<*>, query: String, params: MutableMap<String, Any>): PanacheQueryImpl<*>
open fun find(entityClass: Class<*>, query: String, sort: Sort, params: Parameters): PanacheQueryImpl<*>
open fun find(entityClass: Class<*>, query: String, sort: Sort, vararg params: Any): PanacheQueryImpl<*>
open fun find(entityClass: Class<*>, query: String, sort: Sort, params: MutableMap<String, Any>): PanacheQueryImpl<*>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open fun list(entityClass: Class<*>, query: String, params: MutableMap<String, Any>): Uni<MutableList<*>>
open fun list(entityClass: Class<*>, query: String, sort: Sort, params: Parameters): Uni<MutableList<*>>
open fun list(entityClass: Class<*>, query: String, sort: Sort, vararg params: Any): Uni<MutableList<*>>
open fun list(entityClass: Class<*>, query: String, sort: Sort, params: MutableMap<String, Any>): Uni<MutableList<*>>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard