6

我看过两篇关于 URL 约定的帖子,但我的问题是针对 OData Web 服务假设的 SAP 网关实现的。尝试$filter结合使用时,$expand我们收到错误消息:

Left hand expression of memberaccess operation has wrong cardinality

假设我有两个简单的实体:

Foo
 * Key
 - Value

Bar
 * Key
 * Id
 - Value

Foo 与 1:n 关联Bar。以下 URL 按预期工作。

/sap/opu/odata/sap/ZTEST_SRV/Foo?$expand=Bar

一样

/sap/opu/odata/sap/ZTEST_SRV/Foo?$filter=Key gt 10&$expand=Bar

当尝试使用$filter实体Bar属性时Id,我们会收到错误消息。

/sap/opu/odata/sap/ZTEST_SRV/Foo?$filter=Key gt 10 and Bar/Id gt 2&$expand=Bar

是否可以以$filter这种方式与 SAP 一起使用?相关文章如下。

ODATA / SAP 网关:关于同时使用 $filter 和 $expand 进行查询

过滤 OData 中的扩展实体

4

1 回答 1

2

我也面临类似的问题,有这个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。然后您将能够无错误地执行此请求,并且可以接收过滤器以在您的后端系统上进行相应的查询。该请求将类似于:

新的简单实体:

条形过滤器

  • 钥匙
  • ID
  • 价值

Foo 与新实体 BarFilter 具有 1:1 关联。

要求:

/sap/opu/odata/sap/ZTEST_SRV/Foo?$filter=Key gt 10 和 BarFilter/Id gt 2&$expand=Bar

我希望这很清楚,并且对您有所帮助。我对这个话题很感兴趣,所以如果你发现一些有趣的东西,请分享。

周末愉快。

干杯

于 2021-01-29T11:32:09.707 回答