listAll

@GenerateBridge
open fun listAll(): List<Entity>

Find all entities of this type. This method is a shortcut for findAll().list().

Return

a List containing all results, without paging

See also


@GenerateBridge
open fun listAll(sort: Sort): List<Entity>

Find all entities of this type, in the given order. This method is a shortcut for findAll(sort).list().

Return

a List containing all results, without paging

Parameters

sort

the sort order to use

See also