我不知道为什么集合值导航属性总是返回一个空列表并引用实际数据链接。
这是我尝试过的查询:
GET <organization>/api/data/v8.0/new_subjectareas?$expand=new_product_new_subjectarea&$count=true
回复 :
{
"@odata.context":"<organization>/api/data/v8.0/$metadata#new_subjectareas",
"@odata.count":150,
"value":[
{
"@odata.etag":"W/\"9644599\"",
"timezoneruleversionnumber":null,
"processid":null,
"_stageid_value":null,
"new_product_new_subjectarea":[],
"new_product_new_subjectarea@odata.nextLink":"<organization>/api/data/v8.0/new_subjectareas(622bcca9-8946-e511-80fb-00155d002810)/new_product_new_subjectarea"
},
....
如何在不对其引用 (new_product_new_subjectarea@odata.nextLink) 提出新请求的情况下获取导航属性 (new_product_new_subjectarea) 中的项目?