Hello,

I have a abstract base class and two derived classes.
My control has a property of the base type and it is serialized using
InnerProperty.
It serializes fine, but I can't get it to convert back to the objects.

The error message is: Type 'BaseType' does not have a property named
'DerivedTypeProperty'.
So it tries to build the base class object and set properties of the derived
class.

How can I make sure that the derived class is built?

Victor