Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to query the workitems of 2 different projects in the DefaultCollection with a single call. If so, how?

share|improve this question

1 Answer

up vote 1 down vote accepted

You can do it be creating a WIQL query using the IN operator and listing the Team Projects you're interested in.

For example:

var wiql = @"SELECT * 
             FROM WorkItems 
             WHERE [System.TeamProject] IN ('Project1', 'Project2')";

using (var tfs = TfsTeamProjectCollectionFactory.GetTeamProjectCollection(uri)
{
    tfs.EnsureAuthenticated();
    var store= tfs.GetService<WorkItemStore>();
    var workItems = store.Query(wiql);
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.