Author name: ABAYTHON

What are the different query option in ODATA-URL

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 »

How does OData service works

OData services works through entity sets and entities. Data is represented in the form of Tables. Tables are referred as Entity sets and the lines of record are referred as entities. The Data is accessed through the following OData methods. These OData methods are referred as CRUD methods. OData Method Http Method Description and its

How does OData service works Read More »