I have a Map in a domain object and I'd really like to pass it through RequestFactory. RF doesn't do Maps, so I now generate a List of KeyValue in a getter in my domain object and they have KeyValueProxy equivalents on the client side. It seems that RF bypasses the getter when populating the EntityProxy, so that method isn't called.
Is there a simple solution to this that I'm missing? I'd prefer to stop adding levels of hackery to this essentially simple problem.
Richard