Cascaded table structure in Mendix

1
Dear Mendix community, we have a question on a cascaded data model – we have four different stages with similar data structure. ID| Name |…             2. ID| Name |….                   3. ID| Name |…. How can we model it in mendix?   Kind regards, Adam
asked
2 answers
0

Dear Adam,

In your case, all your need is an entity and two self associations. Something like as shown below

 

answered
0

when you say stages, you mean hierarchically related?

if so, you can try  @Shekhar’s method.

otherwise, you may try:

  • generalization/Specialization
  • 1/M associations
answered