You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@olingo.apache.org by Mark Sztainbok <ma...@okta.com> on 2014/09/09 02:17:37 UTC

Adding to a collection of complex types does not cause an update to occur

The API I'm accessing has an object called User which has a collection of complex types called AssignedLicenses.

I have the following code:
user.getAssignedLicenses().add(createAssignedLicense(skuId));
this.container.flush();

However, when I look in Fiddler I don't see any updates occurring for the User object.

Am I missing a step somewhere? Should this code work?

Thanks,
Mark