Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OData v4 groupby with $count

I'm using OData v4 with WebAPI with these nuget-packages:

Microsoft.Data.OData 5.7.0

Microsoft.AspNet.WebApi.OData 4.0.30506

I can't get groupby to work with count. It should be the most simple thing.

I have a simple table/entity called Delivery. It has a status column (among several other ones). What I basically want to do is this SQL query, but with OData:

SELECT e.status, count(*) AS total
FROM Delivery e
GROUP BY e.status

I've tried using countdistinct, but it doesn't give me the correct results.

/odata/deliveries?$apply=groupby((status),aggregate(status with countdistinct as total))

It returns:

"value": [
{
    "@odata.id": null,
    "total": 1,
    "status": 1
},
{
    "@odata.id": null,
    "status": 2,
    "total": 1
},
{
    "@odata.id": null,
    "status": 4,
    "total": 1
}
]

The correct results should be (which is what my SQL-query returns):

status  total
1       2
2       22
4       1

I've also read about the virtual property $count, but it seems as Microsoft doesn't support it yet.

How do I use group by together with a simple count with OData v4?

like image 921
smoksnes Avatar asked Jan 09 '17 15:01

smoksnes


People also ask

What is OData v4?

The Open Data Protocol (OData) enables the creation of REST-based data services, which allow resources, identified using Uniform Resource Locators (URLs) and defined in an Entity Data Model (EDM), to be published and edited by Web clients using simple HTTP messages.

What is $select in OData?

The $select option specifies a subset of properties to include in the response body. For example, to get only the name and price of each product, use the following query: Console Copy. GET http://localhost/odata/Products?$select=Price,Name.


1 Answers

Whilst $count is not supported, contdistinct has been supported for a while and is possibly more syntactically correct for OData aggregate scenarios, the documentation is a little bit lacking but countdistinct gives the caller control over which field to use in the result set to determine the unique results. This is especially useful in complex nested or expanded grouping queries.

So it turns out you have a simple bug in your query!

In your query: /odata/deliveries?$apply=groupby((status),aggregate(status with countdistinct as total))

You are asking for count all the distinct values of status. Because you are grouping by status, the distinct values in each group will always be 1 :)

Your actual query should be to countdistinct over a property that will be unique for each item in the set, usually an Id. Assuming Delivery has an Id field called "Id", your query should be this:

/odata/deliveries?$apply=groupby((status),aggregate(id with countdistinct as total))

this will translate closely to your expected SQL:

SELECT status, COUNT(DISTINCT id) AS total
FROM Delivery
GROUP BY status
like image 142
Chris Schaller Avatar answered Sep 27 '22 03:09

Chris Schaller