All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jvmMain.dev.inmo.micro_utils.repos.exposed.ExposedRepo.kt Maven / Gradle / Ivy

There is a newer version: 0.22.2
Show newest version
package dev.inmo.micro_utils.repos.exposed

import dev.inmo.micro_utils.repos.Repo
import org.jetbrains.exposed.sql.*

interface ExposedRepo : Repo, FieldSet {
    val database: Database
    val selectAll: Transaction.() -> Query
        get() = { (this@ExposedRepo as FieldSet).selectAll() }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy