Reputation: 11611
I use Team foundation 2012
and my application developed by C#
. Can I show all tasks in TFS
that closed with priority 1 in my application.
thanks in advance.
Upvotes: 0
Views: 182
Reputation: 3430
You can try to use Query class, specifically its constructor. Or WorkItemStore.Query.
Here is an example to do it. It basically accepts a query string that you use when querying the TFS using the client.
Btw, this is somewhat related to this question. Yours is for a specific query.
Upvotes: 1