我只想在阅读时在查询正文中应用另一个过滤器。例如:这是我的代码。
customAttributeQuery.SetFilter(Value_ID, attributeValueID);
customAttributeQuery.Open();
while customAttributeQuery.Read() do begin
counter := 0;
// HERE IN BODY I WANT TO APPLY ANOTHER FILTER
// customAttributeQuery.SetFilter(Value, attributeValue);
end;
The issue is when i apply another filter in the body of while loop and open the query and try to read it .This code always breaks my whole code.