CrudRepository.insert

Inserts a new entity in the table.

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

Examples

Example entity = new Example();
entity.b = "Hello!";
repository.insert(entity);

Meta