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
When querying with the "$inlinecount=allpages" option, ODataQueryProvider attempts to add the same key twice to the HttpContext.Current.Items collection.
ODataQueryProvider.cs, line 112 should be changed from:
HttpContext.Current.Items.Add("ODataQueryOperation.Current", operation);
to:
HttpContext.Current.Items["ODataQueryOperation.Current"] = operation;
The text was updated successfully, but these errors were encountered:
When querying with the "$inlinecount=allpages" option, ODataQueryProvider attempts to add the same key twice to the HttpContext.Current.Items collection.
ODataQueryProvider.cs, line 112 should be changed from:
HttpContext.Current.Items.Add("ODataQueryOperation.Current", operation);
to:
HttpContext.Current.Items["ODataQueryOperation.Current"] = operation;
The text was updated successfully, but these errors were encountered: