-
Notifications
You must be signed in to change notification settings - Fork 11
Delete
miguelperezcolom edited this page Sep 22, 2024
·
2 revisions
For deleting records from a crud you must override the method delete
in the class implementing the Crud
interface.
E.g.:
@Override
public void delete(List<LanguageRow> selection) {
repo.removeAll(selection);
}
Please note that you receive a list of the selected rows as the parameter.
- Home
- Disclaimer
- See it in action
- User manual (v3)
- UX and IA
- Internals
- Roadmap
- Javadoc
- SonarQube
- Other MDD frameworks
- Thanks