AbstractAndroidCRUDRepo

abstract class AbstractAndroidCRUDRepo<ObjectType, IdType>(helper: StandardSQLHelper) : ReadStandardCRUDRepo<ObjectType, IdType>

Functions

contains
Link copied to clipboard
open suspend override fun contains(id: IdType): Boolean
count
Link copied to clipboard
abstract suspend fun count(): Long
getById
Link copied to clipboard
open suspend override fun getById(id: IdType): ObjectType?
getByPagination
Link copied to clipboard
open suspend override fun getByPagination(pagination: Pagination): PaginationResult<ObjectType>

Inheritors

AbstractMutableAndroidCRUDRepo
Link copied to clipboard