使用 Netflix OData 服务返回带有演员的标题记录
如果我按 Title.Id 进行筛选,是否有办法返回由 Title 记录和关联的 Cast 集合组成的结果集?
IE,给我所有 Id =“ApUFq”的标题字段和关联的演员(人)集合。
Is there a way to return a result set made up of a Title record and the associated Cast collection if I filter on Title.Id?
I.E., give me all Title fields where Id = "ApUFq" and associated Cast (Person) collection.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这是您描述的查询:
http://odata.netflix.com/v1/Catalog/Titles('ApUFq')?$expand=Cast
或者在 LINQ 中:
从 Titles 中的 t(其中 t.Id == "ApUFq")选择新的 {t, t.Cast}
I think this is the query you're describing:
http://odata.netflix.com/v1/Catalog/Titles('ApUFq')?$expand=Cast
Or in LINQ:
from t in Titles where t.Id == "ApUFq" select new {t, t.Cast}