I have two types Person and Honorific with a 0..1 to Many relationship between them. I am using queryOptions.request.SetSelectExpandClass to support expand and it works perfectly to expand Honorific when there is an Honorific.
When there is no Honorific I need the Json payload to include Honorific=(null). In that situation I return a null from TryGetPropertyValue but the Json serializer completely omits any reference to Honorific where it should insert Honorif=(null). Any ideas on how to achieve this? Thanks!