gpt4 book ai didi

c# - 使用 WIQL,如何在 System.Tags 上查询 VSTS 工作项

转载 作者:太空狗 更新时间:2023-10-30 01:17:57 25 4
gpt4 key购买 nike

这不是本地安装,只是 VSTS。我刚开始使用 VSTS REST API 和 WIQL。我正在尝试运行一个查询来过滤我在 System.Tags = 'User Generated' 上的工作项。当我检索我的工作项时,我可以在 JSON 中看到:

System.Tags : "User Generated"

我正在使用以下指南来构建我的查询并使一切正常,但当我尝试过滤标签时除外。我已经尝试过 [System.Tags] Contains ('User Generated') 等。似乎没有任何效果。有什么想法吗?

VSTS WIQL Reference

最佳答案

好吧,在我放弃并发帖之后,我想通了。我错误地使用了 Contains。我在括号中有过滤器。以下两个示例现在都可以使用。

Select [System.Id], [System.Title], [System.State], [System.Tags]
From WorkItems
Where [State] <> 'Closed'
AND [State] <> 'Removed'
AND [Tags] Contains 'User Generated'
AND [System.WorkItemType] = 'User Story'
order by [Microsoft.VSTS.Common.Priority] asc, [System.CreatedDate] desc

或者这个:

Select [System.Id], [System.Title], [System.State]
From WorkItems
Where [State] <> 'Closed'
AND [State] <> 'Removed'
AND [System.Tags] Contains 'User Generated'
AND [System.WorkItemType] = 'User Story'
order by [Microsoft.VSTS.Common.Priority] asc, [System.CreatedDate] desc

关于c# - 使用 WIQL,如何在 System.Tags 上查询 VSTS 工作项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29629430/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com