0

これは私の最初の質問です:)

WIQL (TFS Work Item Query Language) パーサーのようなものがあるのだろうかと思っていました。私は TFS クエリを扱っており、それらのいくつかのフィールドをプログラムで変更する必要があります。パースなどを検索しても結果はありませんでした。手伝って頂けますか?

注: クエリ自体を変更する必要があります。ワークアイテムではありません。

君たちありがとう。

4

1 に答える 1

0

You can use REST api or the .net api:

REST API:

 POST https://{instance}/defaultcollection/[{project}/]_apis/wit/wiql?api-version={version}

    Content-type: Application/json

    {
      "query": string
    }

.net API:

// credentials if required
System.Net.ICredentials credentials = new System.Net.NetworkCredential("User", "Password", "Domain");

// create the collection
Microsoft.TeamFoundation.Client.TfsTeamProjectCollection teamProjectCollection =
        new Microsoft.TeamFoundation.Client.TfsTeamProjectCollection(new Uri(@"http://tfsServer:8080/tfs/collection"), credentials);

// check we are authenticated
teamProjectCollection.EnsureAuthenticated();

// create the work item store
Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItemStore Store = 
            (Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItemStore)
                  teamProjectCollection.GetService(typeof(Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItemStore));

// create a query to select tasks
string query = "SELECT * FROM WorkItems WHERE [System.WorkItemType] = 'Task' AND [System.IterationPath] = '@IterationPath' ORDER BY [System.WorkItemType], [System.Id]";

// replace the iteration
query = query.Replace("@IterationPath", "IterationPath");

// query the store!
Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItemCollection WIC = Store.Query(query);
于 2016-02-16T09:16:30.347 に答える