How to write tfs work item query for fetching workitems which are under more than one iteration path

StackOverflow https://stackoverflow.com/questions/13855711

  •  07-12-2021
  •  | 
  •  

문제

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

올바른 솔루션이 없습니다

다른 팁

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top