KEntities
To be absolutely cache friendly, all query methods in this class that start with "find" ignore the global filters.
The mentions here ignore global filters, only for aggregate root objects, excluding deeper objects fetched by object fetcher.
Functions
Link copied to clipboard
abstract fun batchDelete(entityType: KClass<*>, ids: Collection<*>, con: Connection? = null, block: KDeleteCommandDsl.() -> Unit? = null): KDeleteResult
Content copied to clipboard
Link copied to clipboard
abstract fun <E : Any> batchSave(entities: Collection<E>, con: Connection? = null, block: KSaveCommandDsl.() -> Unit? = null): KBatchSaveResult<E>
Content copied to clipboard
Link copied to clipboard
abstract fun delete(entityType: KClass<*>, id: Any, con: Connection? = null, block: KDeleteCommandDsl.() -> Unit? = null): KDeleteResult
Content copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
abstract fun <E : Any> save(entity: E, con: Connection? = null, block: KSaveCommandDsl.() -> Unit? = null): KSimpleSaveResult<E>
Content copied to clipboard