← Back to Stormify Documentation

findAll

inline fun <T : Any> findAll(whereClause: String = "", vararg arguments: Any?): List<T>

Finds all entities of type T, optionally filtered by a whereClause.


fun <T : Any> findAll(kclass: KClass<T>, whereClause: String = "", vararg arguments: Any?): List<T>

Finds all entities of kclass, optionally filtered by a whereClause.