TFS 2010:基于其他查询的元素的查询?
是否可以根据另一个查询的结果在 TFS 2010 中创建新查询?
例如,一个(父)查询选择位于某一工作项(假设 ID=5 的工作项)下的所有工作项。现在我想创建其他查询,从第一个查询的结果中选择所有错误、所有任务等?
在那里,我只需更改“父”工作项的 ID 一次,而不必在所有后续查询中更改。
TFS 2010 与 VST 2010 结合使用可以实现这一点吗?
谢谢 康拉德
is it possible to create new queries in TFS 2010 based on the result of another query?
For example, one (parent) query selects all work items located under a certain work item (lets say work item with ID=5). And now I want to create other queries, that select all bugs, all tasks etc. from the results of the first query?
There, I only have to change the ID of the "parent" work item once and not in all subsequent queries.
Is this possible in TFS 2010 in combination with VST 2010?
Thanks
Konrad
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于您在 WIQL 的 GUI 编辑器中所追求的内容,有一个基本支持:尝试使用“工作项树”类型的查询 - 这将创建一个多级结构。在这种情况下,您可以处理的支持很少,例如,不可能从级别到级别选择具有不同标准的工作项。
另一方面,您可以使用 TFS-API 实现自定义工具。在那里,您应该能够根据您的需求进行详尽的定制。如果您有兴趣,我可以支持这种努力。
There is a basic support for what you 're after in the GUI editor for WIQL: try with query of type "Tree of Work Items" - which creates a multi-level structure. There is minimal support to what you can handle in this context, for example it's not possible to pick work items with different criterias from level to level.
On the other hand you can implement a custom tool using the TFS-API. There you should be able to tailor to your needs exhaustively. I can support in such endeavor in case you 're interested.
您想要做的似乎更多的是报告而不是简单的查询。我认为您应该看看实施自定义报告。
What you want to do seems to be more of a report than a plain query. I think you should have a look at implementing custom reports.