So i have this nightmere (RDBMS) . I asked alot of questions here but none have been answered ,about mimicking oo concepts in rdbms ...
Many websites (forums , social networks etc) have alot of features for the posted content .
They can have comments, likes, shares, stars etc ...
Assuming that there can be several types of posts (normal post , comment, photo, question) and some types of posts can't have all features (like lets say only stars and comments) , it is pritty hard to decide which way to go...
I can go :
on the oo road by creating an entity id , and entity type for each post (this entity id will be referenced in each post table and the feature will also reference the entity id ) . Also need the entity type to make some integrity triggers for example a comment entity can have like feature but not comment feature . This entity type field will be a nightmere if it will be needed to add more features for posts (some new entity types will be needed to be added). And this simply is a mess for data integrity .
or on the 5x times more db tables . By this i mean designing features tables for every single type of post table . This will require more joins , longer queries , but at least i know i won't have problems with data integrity or scalability .
I have to use a rdbms , can't go the oodbms way or graph db way .
What will you choose from those 2 types of design ? Or how would you design it better ?