我正在使用ODataLib来解析OData V4提要和条目。其中一个OData源返回带有扩展关联的有效负载,如下所示:
{
"@odata.context":"https://myfeed.com/api/data/v8.1/$metadata#accounts(name,Account_Tasks)","value":[
{
"@odata.etag":"W/\"596351\"","name":"Account 1","accountid":"5f4c87e4-4952-e611-80dd-c4346bacfc18","Account_Tasks":[
],"Account_Tasks@odata.nextLink":"https://myfeed.com/api/data/v8.1/accounts(5f4c87e4-4952-e611-80dd-c4346bacfc18)/Account_Tasks"
}
]
}
请注意元素" Account_Tasks@odata.nextLink":它提供了扩展数据的链接。但是ODataLib类似乎都没有公开这个属性。
此属性是否由ODataLib公开,或者目前不支持?
答案 0 :(得分:1)
ODL支持它,您可以在
中找到它 public Uri NextPageLink
{
get
{
return this.nextPageLink;
}
set
{
if (this.DeltaLink != null && value != null)
{
throw new ODataException(ODataErrorStrings.ODataFeed_MustNotContainBothNextPageLinkAndDeltaLink);
}
this.nextPageLink = value;
}
}