vote up 0 vote down star

Hi, I'm reading through the Doctrine documentation but I can't find a way to implement the type of inheritance I want to use.

I would like to set up a hierarchy like so:

Node -> Something -> Something Else

With Node being the main parent.

I would like to store data common to everything in a node table, eg date of creation, update etc rather than storing this same information in every table. The child classes would then have varying properties depending on their purposes.

Doctrine's simple and column_aggregation methods do not appear to be able to create new tables for the child classes, whilst the concrete method makes a new table but copies all of the parent's properties.

Is there a way to achieve this?

Any advice appreciated.

Thanks.

flag

76% accept rate

1 Answer

vote up -1 vote down

I am feeling strongly against such a method of storing data. Cannot explain why however.

link|flag
I think this is more useful as a comment... – Skilldrick Nov 6 at 13:29
Probably, but I am not sure. People often ask how to eat soup using a knife and I see no reason in giving replies. – FractalizeR Nov 6 at 13:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.