Hi,
I want that Dynamic Data does not access my Tables directly but indirectly via a Custom DAO-Class like the following one:
class SomeTableDAO {
SomeEntity saveSomeEntity(...) { ... }
SomeEntity findSomeEntityById(int id) { ... }
SomeEntity findSomeEntityByAnotherLinkedEntity(AnotherLinkedEntityId id) { ... }
}
Is there a way to do such things?
Regards,
Manfred