We are using the first version of Scrum for team system in TFS 2008. What I'm trying to do is write a query to get all sprint backlog items in the current active sprint. I'd like to use the sprint start and end dates around the @Today param to get the list.
something like this:
Team Project = @Project
AND Sprint Start <= @Today
AND Sprint End >= @Today
This query returns only the Sprint. I want all the sprint backlog items. I almost need to be able to do a subquery
Team Project = @Project
AND Sprint Number IN (Sprint Start <= @Today AND Sprint End >= @Today)
Anyone have any ideas? Right now I just have
Team Project = @Project
AND Sprint Number <= 12
and I really hate the idea of having to change the number across all my queries every time we start a new sprint.
Thanks