Hi there!
Start the DataPresenter.DataSources.OData.SampleApp, choose Northwindow Employees. In the grid filter so that no record will be found. The grid is empty now, but watch the memory consumption in the taskmanager .... constantly growing! If you add
_client = new ODataClient(new ODataClientSettings(_baseUri)
{
IgnoreUnmappedProperties = true,
BeforeRequest = (r) => System.Diagnostics.Debug.WriteLine(r.ToString())
});
in ODataVirtualDataSourceDataProviderWorker
you will see that the same http-request is permanantly fired.
Regards
Meinhard