I have a small sample prj where I can't get the base class for a polymorphic serializer to set the properties of the base class. I have tried several different things but nothing works. JsonParseTest is the test case I am trying to get to work.
NewsFeedItem<----Post <------- Video
<----Misc Other Class
My custom Serializers are in NewsFeedItemSerializer which are applied to NewsFeedItem and Post.
So in the test cases Video's properties are set, but not Post and NewsFeedItem. In the serializer I force kind, because at first I was using discriminator in the Json and I thought that if it was a discriminator it wouldn't set it.
Anyway here is a link to the project ->
https://github.com/brh/KSF