stratdaz
stratdaz
Thanks, that looks more promising.
Seems any operator added to $apply breaks the query. This is fine ... http://localhost:64771/People?$apply=groupby((FirstName),aggregate($count as Count)) but these error ... http://localhost:64771/People?$apply=groupby((FirstName),aggregate($count as Count))**&$orderby=FirstName** http://localhost:64771/People?$apply=groupby((FirstName),aggregate($count as Count))**&$top=2** Downgrading to 8.0.0 doesn't...
Hi, I may be misunderstanding but this is what I was referring to ... My Web API controllers GETs are query enabled. I used paged grids, for example, in my...
Perhaps something to do with the fact that the get methods are parameter-less. And explicitly adding an ODataQueryOptions parameter might work? public IHttpActionResult Get(**ODataQueryOptions** **queryOptions**) { QueryOptionsUtilities.RemoveExpandDetails(queryOptions); // ... }