I have the case where I am mapping several components. Never would I have the same type of component in its owner.
All the components inherit from the same base type and all have one string property called "Value" that I want to persist.
So in an object I may have Colour and Food components that would, by standard conventions get mapped as the following columns:
ColourValue
FoodValue
I would really like to be able to drop the Value post fix and just use the prefix to leave me with the following columns:
Colour
Food
Is this possible?
Dewy