我需要按顺序显示数据
我有这样的网址,需要根据日期显示数据
我试过这个
http://localhost:33396/values.svc/Names?$format=json&$expand=Address&$select=Address/PhoneNumber,Address/Pincode&$filter=Address/any(value:value/Pincode+eq+guid%27600045%27)+and+Address/any(value:value/country+eq+guid%27India%27)%20&$orderby=Address/Date+desc
但我收到的错误就是这样
{"odata.error":{"code":"","message":{"lang":"en-US","value":"The parent value for a property access of a property 'Date' is not a single value. Property access can only be applied to a single value."}}}
我该如何解决这个问题
答案 0 :(得分:0)
地址是名称上的导航属性吗?从错误显示,我认为地址是一个集合。属性访问只能用于单个值,或者通过使用哪个项目来获取“地址”集合中指定属性“日期”而感到困惑。