Hi,
We have a different child entities which we want to render in GroupTable.
There is parent entity A. And entities B, С which extends A. All entities A, B and С are stored in a different tables. So we should to display B and C in GroupTable.
What is the best practice?
For the moment we use List of KeyValueEntity to get all entities B and C. We use java reflection to get all fields of B (or C) and combine with parent fields. Then we get form DB all values. This approach is complex and it can impact on original filtering and pagination. Is’n it? Will we have problems with filtering and pagination?