Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is "$count" supported? #12

Open
Rich-AU opened this issue May 25, 2020 · 1 comment
Open

Is "$count" supported? #12

Rich-AU opened this issue May 25, 2020 · 1 comment

Comments

@Rich-AU
Copy link

Rich-AU commented May 25, 2020

When I used "$count" in the request, I got this error:
{"code":-1,"message":{"lang":"en","value":"Parameter $count is not supported.","innererror":null}}

But based on this document, it seems $count is supported:
https://github.com/JocaPC/sql-server-rest-api/blob/master/doc/odata.md

Just want to clarify that if "$count" is supported? Thanks.

@JocaPC
Copy link
Owner

JocaPC commented May 25, 2020

Actually it works. You just need to explicitly add a route that accepts $count: (see https://github.com/JocaPC/sql-server-rest-api/blob/master/TestApp/Controllers/RestApiController.cs#L88)

        [HttpGet("[controller]/odata/objects")]
        [HttpGet("[controller]/odata/objects/$count")]
        public async Task Objects()

Count is not one of the parameters it is specified using /$count.

You can also use $apply=aggregate(object_id with count as c) as alternative.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants