我将 WebAPI 2.2 与 OData V4 一起使用。
我可以使用$filter=RelatedObj/PropertyName eq 'Some Value'
基于相关对象属性值过滤实体列表。
但是,当我尝试使用相同的语法时$select
:
$select=Id,Name,RelatedObj/PropertyName
导致异常:
"message": "The query specified in the URI is not valid. Found a path with multiple navigation properties or a bad complex property path in a select clause. Please reword your query such that each level of select or expand only contains either TypeSegments or Properties.",
"innererror": {
"message": "Found a path with multiple navigation properties or a bad complex property path in a select clause. Please reword your query such that each level of select or expand only contains either TypeSegments or Properties.",
"type": "Microsoft.OData.Core.ODataException",
这可以解决吗?