Hi,
I need some clarification about the property EnableCaching.
Following what I would do:
- A DataManager that uses ODataV4Adaptor to talk with my v4 OData endpoint (using ASP.NET Web API 2.2)
- Enable caching to cache multiple page and to reduce multiple request to the server
I have therefore chosen to use the property EnableCaching.
In this way, however, the grid use the CacheAdaptor rather then the adaptor set in ejDataManager control.
This means that all calls to my OData endpoint v4 pass through CacheAdaptor, which produces OData incompatible requests (for example, an update request produces a POST instead of a PUT or PATCH); this means that it is called the wrong Web API action.
Is there a way to enable caching maintaining the original adaptor behavior?
Thanks,
Roberto