我目前有一个具有以下模型的 OData V4 服务。
“类别”——“代码”
对于每个类别,可以有许多代码。
我需要 $expand the Codes, $filter where Active = true 然后 $orderby Codes.Description。
目前,以下工作正常,无需订购。
odata/Categories?$expand=Codes($filter=Active eq true)
这不起作用。
odata/Categories?$expand=Codes($filter=Active eq true&$orderby=Description)
我收到“在 URI 中指定的查询无效。位置 12 的语法错误。” &“‘描述)’中位置 12 的语法错误。”
基本上它正在读取“描述”之后的最后一个“)”作为错误。