AbstractAndroidCRUDRepo

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

Constructors

Link copied to clipboard
fun AbstractAndroidCRUDRepo(helper: StandardSQLHelper)

Functions

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

Inheritors

Link copied to clipboard