Fine-Tuning Data Access
Customizing API Requests
The following properties provide the granular control useful for integrating with nonstandard APIs or to access more advanced OData functionality.
• CustomUrlParams: Set this to append query string parameters onto the request that the adapter builds.
Note that if this property is not set you must set Url to the service document to avoid an error.
• ContinueOnError: The adapter builds batch requests to OData 4.0 services when batch APIs in the underlying driver interface are invoked; for example, when your application makes a batch request.
When this property is set, errors are returned in a temporary table to avoid breaking execution.
• UseEtags: Etags can be used by OData clients to check if a resource has changed on the server and avoid concurrency problems. If you do not need to surface this functionality or if your OData service does not return Etags, set this property to false.
• Cookies: If you need to provide cookies obtained outside the adapter, you can set them in this value.
• CustomHeaders: You can use this property to add any value to any HTTP request header.