I have a base entity:
I have subTypes:
- OrderSpawn
- BlockSpawn
- UnkownSpawn
I have entities related to the subTypes:
Finally, I have another entity that needs to have a reference to a spawn (any type)
My question is:
How can I design this so each crop has 1 relation to a spawn (not 1 relation for each subtype = 3), and from that spawn, I can get the subtype, and then final entity related to that subtype (Order, block)?