You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When nesting multiple expands inside another expand, the resulting odata query string contains multiple $expand tags in that nest, whilst they should be grouped into one $expand with comma seperated entity references.
When sending the first request to my oData endpoint, it obviously ignores the first sub expand, and only takes into account the last one.
When expanding multiple relations on the root level, so without the nesting inside the MainRelatedEntity, then it works as expected. The key here is that they are nested.
The text was updated successfully, but these errors were encountered:
When nesting multiple expands inside another expand, the resulting odata query string contains multiple $expand tags in that nest, whilst they should be grouped into one $expand with comma seperated entity references.
Here is an invented code sample:
The result of this looks like:
while it should be this:
When sending the first request to my oData endpoint, it obviously ignores the first sub expand, and only takes into account the last one.
When expanding multiple relations on the root level, so without the nesting inside the MainRelatedEntity, then it works as expected. The key here is that they are nested.
The text was updated successfully, but these errors were encountered: