Abstract Exposed Write CRUDRepo
abstract class AbstractExposedWriteCRUDRepo<ObjectType, IdType, InputValueType>(flowsChannelsSize: Int, tableName: String) : AbstractExposedReadCRUDRepo<ObjectType, IdType> , ExposedCRUDRepo<ObjectType, IdType> , WriteStandardCRUDRepo<ObjectType, IdType, InputValueType>
Content copied to clipboard
Functions
create
Link copied to clipboard
open suspend override fun create(values: List<InputValueType>): List<ObjectType>
Content copied to clipboard
delete By Id
Link copied to clipboard
get By Id
Link copied to clipboard
get By Pagination
Link copied to clipboard
open suspend override fun getByPagination(pagination: Pagination): PaginationResult<ObjectType>
Content copied to clipboard
update
Link copied to clipboard
open suspend override fun update(values: List<UpdatedValuePair<IdType, InputValueType>>): List<ObjectType>
Content copied to clipboard
open suspend override fun update(id: IdType, value: InputValueType): ObjectType?
Content copied to clipboard
Properties
asObject
Link copied to clipboard
deletedObjectsIdsFlow
Link copied to clipboard
newObjectsFlow
Link copied to clipboard
selectById
Link copied to clipboard
abstract val selectById: <ERROR CLASS>.(IdType) -> <ERROR CLASS><Boolean>
Content copied to clipboard
selectByIds
Link copied to clipboard
abstract val selectByIds: <ERROR CLASS>.(List<IdType>) -> <ERROR CLASS><Boolean>
Content copied to clipboard
updatedObjectsFlow
Link copied to clipboard
Inheritors
AbstractExposedCRUDRepo
Link copied to clipboard