문제

There are two entitySets Categories and products in a url.I want to get the products associated with the category.Also only 'Name' Property of Categories table and only 'Product_Id' Property of Products table should be returned.

What will be the OData Specific URL for the same?

도움이 되었습니까?

해결책 2

This is correct URL to do the same

http://rootURI/Categories?$select=Name,Products/Product_Id&$expand=Products

다른 팁

You can try the following URL: http://host/Categories?$select=Name&$expand=Products($select=Product_Id)

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top