如何在OData中对扩展实体执行投影?

当我执行以下OData查询时,我看到一个特定的Netflix标题,其奖项已扩展。
http://odata.netflix.com/Catalog/Titles?$filter=Name eq 'The Name of The Rose'&$expand=Awards&$select=Rating,Awards
请注意,我只预测了标题的Rating属性。 我还可以投影($ select)扩展奖项的特定属性吗?也就是说,对于扩展中的每个奖项,只显示类别和年份属性。     
已邀请:
当然,只需修改查询即可:
$select=Rating,Awards/Category,Awards/Year
    
这里的例子是使用Asp.Net Odata与top,filter,select和select扩展属性 http://test.com/odata/Entity/?$top=20&$filter=contains(Name,'A')&$select=Name,Email&$expand=Child($select=ChildPropertyName)     

要回复问题请先登录注册