You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To make it easier to work with oData filters, a builder should be created.
Example of how this would look like in practice:
<?php$customerQuery = oDataQuery::query()
->LessThanOrEqual("CustomerNumber" , 100)
->orderByAsc("Name");
// Fetch only customers where the CustomerNumber is less than or equal to 100, and order by the Name ascending.$service->getCustomers($customerQuery);
$customerQuery->build(); // "?$filter=(CustomerNumber le 100)&$orderBy=Name asc"
The text was updated successfully, but these errors were encountered:
To make it easier to work with oData filters, a builder should be created.
Example of how this would look like in practice:
The text was updated successfully, but these errors were encountered: