filter dynamic content

arkiboys 9,596 Reputation points
2021-09-16T07:33:01.843+00:00

Hi,
In the settings of the filter activity, I have placed the following which works fine.
Items --> @activity('Get list of objects').output.value
Condition --> @equals(item().SourceSystem, pipeline().parameters.pSourceSystem)

Now I would like to expand on the Condition by adding another clause such as the following but it errors. Can you correct it please?

@equals(item().SourceSystem, pipeline().parameters.pSourceSystem)
&&
@equals(item().Disabled, pipeline().parameters.pDisabled)

Thank you

Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
9,516 questions
0 comments No comments
{count} votes

Accepted answer
  1. Nandan Hegde 29,886 Reputation points MVP
    2021-09-16T07:36:40.903+00:00

    Hey,
    You need to use and expression.

    @and(equals(item().Disabled, pipeline().parameters.pDisabled),equals(item().SourceSystem, pipeline().parameters.pSourceSystem))
    

0 additional answers

Sort by: Most helpful