WCF 数据服务 - 首次请求时包括儿童
我有一个带有销售行和多个行项目的实体模型。当我对特定行发出请求时,我会返回该行信息,但不会返回子行项目。我尝试从导航属性中删除 [XmlIgnoreAttribute()] 和 [SoapIgnoreAttribute()],但我仍然没有获得子项目。 WCF 数据服务无法一次性序列化整个对象图吗?
I have an entity model with a sales line and a multiple line items. When I do a request for a particular line, I get the line information back, but I don't get an of the children line items back. I've tried removing the [XmlIgnoreAttribute()] and [SoapIgnoreAttribute()] from the navigation property but I still don't get the child items. Can WCF Data Services not serialize an entire object graph in one shot?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,您必须使用扩展扩展方法来说明您想要加载导航属性的服务 在客户端上。
No you must say service that you want to load navigation property as well by using Expand extension method on client.