1

I want to write a tfs work item query like below

  • (Team project = @Project)
  • AND (Assigned to = user1 OR Assigned to = user2 OR Assigned to = user3)
  • AND (Iteration path under path1 OR Iteration path under parth2)

Please help me in achieving the same.

Below is what i am trying to do, but its not giving me desired results.

enter image description here

rene
  • 41,474
  • 78
  • 114
  • 152
Ashish
  • 437
  • 1
  • 4
  • 10

1 Answers1

0

I think i found the problem.

The problem was with the first class where i was using Team project = @Project

and @Project was set to one iteration path and hence it was always showing the result from one iteration path.

Removing the first class solved the problem.

Ashish
  • 437
  • 1
  • 4
  • 10