我正在查询包含用户创建的记录的索引。由于我的应用程序可以有多种类型的用户,因此该表具有 CreatedByType 和 CreatedById。
我想排除某个特定用户创建的结果。
// Exclude $userId from the results
$this->Client->SetFilter('CreatedById', $userId, true);
但是,这显然会排除所有 id 为 的用户类型的结果$userId
。同样地:
// Exclude $userId from the results
$this->Client->SetFilter('CreatedByType', $userType, true);
将排除所有类型用户的结果$userType
。
如何将两个属性组合成一个约束并对它们进行AND
查询?
谢谢