odata多个实体供参考

时间:2011-04-22 22:01:10

标签: odata atom-feed

我的学生实体与课程实体有一对多的关系。我不确定用于以一对多关系引用链接的有效载荷格式。

以下是我以一对一关系使用的链接标记。不确定标签在一对多关系中的外观。

 <link rel="http://schemas.microsoft.com/ado/2007/08/dataservices/related/parent"
           type="application/atom+xml;type=entry"
           href="http://localhost:10080/school/odata/Parent(1)"></link>

当引用多个实体时,有关格式的任何想法吗?

1 个答案:

答案 0 :(得分:0)

格式(在ATOM中)非常相似。您只需要将类型更改为application / atom + xml; type = feed(因为结果将是潜在多个条目的提要),并且href需要指向返回该提要的URL。 这也在这里描述:http://www.odata.org/developers/protocols/atom-format#DeferredContent 请注意,完全取决于你如何看待href,约定是/ Students(1)/ Courses(因为这也是客户端查询的要求)。