I am trying to query a single team project in the main TfsTeamProjectCollection
which contains 194 Team Projects in total. I know exactly how to get a WorkIte
You could try something like this for getting all WIs within teamProject
:
WorkItemCollection workItemCollection = workItemStore.Query(
" SELECT [System.Id], [System.WorkItemType],"+
" [System.State], [System.AssignedTo], [System.Title] "+
" FROM WorkItems " +
" WHERE [System.TeamProject] = '" + teamProject.Name +
"' ORDER BY [System.WorkItemType], [System.Id]");
And this to get a specific WorkItem ID:
WorkItem workItem = workItemStore.GetWorkItem(555);