我正在尝试使用odata查询的过滤器检查总记录。但它会抛出错误
<m:message>Could not find a property named '$count' on type 'Edm.Boolean'.</m:message>
有什么建议吗?
https://testodataurl.com/testService.svc/Entity?$filter=(Id eq 377 and MSF eq 'Good')/$count
答案 0 :(得分:2)
$ count不是查询选项。它应该出现在查询选项之前。
所以试试
https://testodataurl.com/testService.svc/Entity/ $ count /?$ filter =(Id eq 377和MSF eq'Good')