RIA 服务 OData“不允许查询选项。”
我有一个由 RIA 自动创建的 OData 端点,它似乎适用于简单的“获取”查询。
例如
http://xxx/Service/BusinessApplication1-Web-DomainService1.svc/odata/但是
,当我尝试使用“where”或“top”等查询时,例如:
.../BusinessApplication1-Web-DomainService1.svc/odata/ProductSet?$top=50
会导致“查询选项是不允许。
我设置了一个 WCF 数据服务,它有一个 OData 端点,该端点工作正常并允许查询,那么为什么 RIA 生成的端点不起作用呢?
谢谢!
I have a OData endpoint which was created automatically by RIA which seems to work with simple 'get' queries.
E.g.
http://xxx/Service/BusinessApplication1-Web-DomainService1.svc/odata/ProductSet
But when I try to use queries such as 'where' or 'top', e.g:
.../BusinessApplication1-Web-DomainService1.svc/odata/ProductSet?$top=50
results in 'Query options are not allowed.'
I set up a WCF Data Service that has a OData endpoint which works fine and allows queries, so why does the RIA generated one not work?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
RIA 服务公开的 OData 端点当前不支持查询运算符。也没有真正的解决方法(据我所知)。
The OData endpoint exposed by a RIA service doesn't currently support query operators. There's no real workaround for that either (as far as I know).
以及其他限制。
And other limitations.