OData 查询:根据列条件获取多行

OData Query: Getting several rows based on a column criteria

我有一个 table,它包含一个属性字段及其对应的值。对于一个实例,有几个属性是适用的,我想 return 这个实例的一组特定属性。

    |Attribute|Value|
    ----------
    | A       | 1   |
    ----------
    | B       | 2   |
    ----------
    | C       | 3   |
    ----------

如何使用Odata查询得到属性A和C及其对应的值?

截至目前,我只能使用 $filter=endswith(Attribute, 'A') 获得一行。

您可以简单地在 ODATA 查询中使用 or 运算符添加更多过滤器,如下所示:

$filter=(endswith(Attribute, 'A') or endswith(Attribute, 'C'))