$count Query option in SAP OData Service
$count Query option counts the number of entries in the table. https://services.OData.org/v3/OData/OData.svc/Products/$count The above URL renders the result of total no of products ‘11’ in the browser.
$count Query option counts the number of entries in the table. https://services.OData.org/v3/OData/OData.svc/Products/$count The above URL renders the result of total no of products ‘11’ in the browser.
The OData URL can be modified to represent the corresponding results. It provides various Filter options $Filter: It is like the WHERE condition. The below URL in the browser returns the products with the price less than 100. https://services.OData.org/v3/OData/OData.svc/Products?$filter=Price lt 100 $Select: It is used to display only the respective columns of the table. https://services.OData.org/v3/OData/OData.svc/Products?$select=ID,Categories …
What are the different query option in ODATA-URL Read More »