如果我过滤Title.Id,有没有办法返回由Title记录和关联的Cast集合组成的结果集?
I.E。,给我所有标题字段,其中Id =“ApUFq”和相关的演员(人)集合。
答案 0 :(得分:1)
我认为这是您要描述的查询:http://odata.netflix.com/v1/Catalog/Titles('ApUFq')?$expand=Cast
或者在LINQ中:
from t in Titles where t.Id == "ApUFq" select new {t, t.Cast}