I have a table binding and consuming the publicly available OData service from the ES4 SAP system. My root entity set is ProductSet
and it has 2 navigation properties: ToSupplier
and ToSalesOrderLineItems
.
I am able to issue the $expand
parameter in the table bindings as follows, but could you please assist me in how I can pass both navigational properties so that the OData service expands both ToSupplier
+ ToSalesOrderLineItems
?
<Table items="{
path: '/ProductSet',
parameters: {
expand: 'ToSupplier'
}
}">