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

commonMain.com.bselzer.ktx.db.operation.DeleteExtension.kt Maven / Gradle / Ivy

The newest version!
package com.bselzer.ktx.db.operation

import com.bselzer.ktx.db.transaction.Transaction
import org.kodein.db.deleteAll
import org.kodein.db.find

/**
 * Deletes all of the [Model] from the database.
 */
inline fun  Transaction.clear() = deleteAll(find().all())




© 2015 - 2024 Weber Informatics LLC | Privacy Policy