Select from following answers:- /Customers('BONAP')/Orders
- /Customers('BONAP')?$expand=Orders
- /Customers?$filter=CustomerID eq 'BONAP'&$expand=Orders
- /Customers/Orders?$filter=CustomerID eq 'BONAP'
- All Above
This query returns only the Order entities for the Customer entity whose CustomerID is 'BONAP':
Using $expand returns the Order entities but also returns the Customer entity.
Show Correct Answer
Source: MeasureUp.com | |
Alert Moderator