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