When loading the data for a grid inside the DetailTemplate of a hierarchical grid we would like to remove the "count" option from the request as it adds an unnecessary delay.
The SfDataManager is configured as follows:
<SfDataManager Adaptor="Adaptors.ODataV4Adaptor"
Headers="@Headers"
Url="@($"https://localhost:123/gateway/odata/endpoint?someId={SomeId}")" />
This results in a call with the count option:
https://localhost:123/gateway/odata/endpoint?someId=132$count
As a result 2 database queries are triggered.
How can we specify that the $count option is not needed?