WIQL 中的子请求

Subrequest in WIQL

如何在WIQL TFS中使用子请求? 我需要这样的东西

SELECT
    [System.Id]
FROM workitems
WHERE [System.Id] IN (
    SELECT
        [System.Id]
    FROM workitems
    WHERE [System.Title] == 'Example' 
)

抱歉,目前无法使用。这里已经有相关用户声音:

TFS: Queries based on results of other queries

https://visualstudio.uservoice.com/forums/330519-azure-devops-formerly-visual-studio-team-services/suggestions/2300378-tfs-queries-based-on-results-of-other-queries

作为使用 TFS 查询执行引擎执行子查询或连接的解决方法,您将必须使用方法 RunLinkQuery()。

有关详细示例,您可以查看此博客:Using the TFS API to display results of a Hierarchical Work Item Query