I defined a Hibernate Filter to filter out the deleted records.
My wishlist:
The Filter should be enabled all the time as default. Only in special cases when I need the deleted records, then I would active disable the filter and enable it again.
@Filter(name = "deletedFilter", condition = "deleted = false")
@FilterDef(name = "deletedFilter")
Would be happy for some info how I can archive that.
br