If you've ever heard of SQL then you will quick understand what the Work Item Query Language (WIQL) is for Team Foundation Server (TFS). I've created a Daily Scrum WIQL that I'll use to generate a report for each Daily Scrum. Here is the WIQL:
SELECT [System.Id], [System.TeamProject], [System.Title], [System.AssignedTo], [Microsoft.VSTS.Common.Rank], [Microsoft.VSTS.Scheduling.StartDate], [Microsoft.VSTS.Scheduling.FinishDate], [Microsoft.VSTS.Common.Discipline], [System.Description], [System.ChangedDate]
FROM WorkItems
WHERE [System.ChangedDate] >= @today - 1
ORDER BY [System.ChangedDate] Desc
See http://msdn.microsoft.com/en-us/library/bb130306(VS.80).aspx for more details on WIQL.
No comments:
Post a Comment