我也面临类似的问题,有这个sap note:
https ://apps.support.sap.com/sap/support/knowledge/en/3008698
备注详细信息的副本:
注意开始
症状
添加过滤器后
$filter = To_Employees/Name eq 'Hugo' 到 Odata 服务,出现错误:
“memberaccess 运算符的左手表达式有错误的基数(很多不允许)”
环境
SAP_GWFND 750
重现问题
Access the odata service: /sap/opu/odata/sap/API_XXX_SRV/Orgnization$select=Orgnization,to_Employees/Name&$expand=to_Employees&$filter=to_Employees/Name eq 'Hugo'
There is an error: "Left hand expression of memberaccess operator has wrong cardinality (to many not allowed)"
原因
“Left hand expression of memberaccess operator has wrong cardinality (to many not allowed)”表示“to_Employees”是一对多导航,不支持与过滤表达式结合使用(例如
$filter = To_Employees/Name eq 'Hugo',
当“To_Employees”指向多个员工时)。
因此,整个请求无效。
解析度
删除过滤器,不要与过滤器 eq 组合到多个结果
笔记结束
我不喜欢提出的解决方案:)
我实施的解决方案是创建一个基数为 1:1 的实体,仅用于过滤。在您的示例中,我假设您需要从 Foo 到 Bar 的关系的基数为 1:n 以便能够为找到的每个 Foo 接收多个 Bar 记录。如果 Foo 与 Bar 的关系是 1:1,您只需更改基数即可。如果你需要基数 1:n,你可以创建一个像 BarFilter 这样的实体,它与 Foo 相关,基数是 1:1。然后您将能够无错误地执行此请求,并且可以接收过滤器以在您的后端系统上进行相应的查询。该请求将类似于:
新的简单实体:
条形过滤器
Foo 与新实体 BarFilter 具有 1:1 关联。
要求:
/sap/opu/odata/sap/ZTEST_SRV/Foo?$filter=Key gt 10 和 BarFilter/Id gt 2&$expand=Bar
我希望这很清楚,并且对您有所帮助。我对这个话题很感兴趣,所以如果你发现一些有趣的东西,请分享。
周末愉快。
干杯