CrudRepository.remove

Removes an entity from the table.

interface CrudRepository(T)
void
remove
()
if (
Ids!T.length
)

Examples

Example entity = new Example();
entity.a = 12;
repository.remove(entity);

Meta