Sam
Sam

Reputation: 14586

breezejs: inlineCount is no longer part of the response

I've upgraded the server webapi breeze dll from version 1.2.8 to 1.2.9, and similarly to my other post, I've got a regression bug.

The following ODATA call is successful and returns the data + inlineCount:

http://mydomain/api/mandates/Mandates?$orderby=PolicyNumber%20desc&$top=10&$inlinecount=allpages

enter image description here

However, the following ODATA call does not return inlineCount (note that the only difference is the orderby criteria on a complex object):

 http://mydomain/api/mandates/Mandates?$orderby=AccountOwner%2FTiersId%20desc&$top=10&$inlinecount=allpages

enter image description here

Can someone look into that please ?

Upvotes: 1

Views: 196

Answers (1)

Jay Traband
Jay Traband

Reputation: 17052

Sorry, this is a bug and it will be fixed in the next release, out later this week or early next week. The fix has already been made to the version of Breeze on GitHub. (This is what we will be releasing after additional testing and some more small changes). Thanks for finding it.

Upvotes: 1

Related Questions