具有类似条件的 TFS WIQL 查询
TFS WIQL Query with like condition
我需要在 IterationPath 字段中使用类似条件在 TFS 2018 上编写一个 WIQL 查询,如下所示:
SELECT
[System.Id],
[System.WorkItemType],
[System.Title],
[System.State],
[System.AreaPath],
[System.IterationPath]
FROM workitems
WHERE
[System.TeamProject] = @project
and [System.IterationPath] LIKE '%MY ITERATION NAME%'
ORDER BY [System.IterationPath] ASC
但我收到错误消息:
Expecting comparison operator. The error is caused by «LIKE».
我必须如何编写查询?
迭代路径的有效运算符是:
所以你不能使用Like
(WIQL中根本没有Like运算符)或者Contains
.
最接近的有效运算符是 Under
,如果所有迭代都在一个父项下,您将获得所有迭代。
您可以找到更多信息 here。
我需要在 IterationPath 字段中使用类似条件在 TFS 2018 上编写一个 WIQL 查询,如下所示:
SELECT
[System.Id],
[System.WorkItemType],
[System.Title],
[System.State],
[System.AreaPath],
[System.IterationPath]
FROM workitems
WHERE
[System.TeamProject] = @project
and [System.IterationPath] LIKE '%MY ITERATION NAME%'
ORDER BY [System.IterationPath] ASC
但我收到错误消息:
Expecting comparison operator. The error is caused by «LIKE».
我必须如何编写查询?
迭代路径的有效运算符是:
所以你不能使用Like
(WIQL中根本没有Like运算符)或者Contains
.
最接近的有效运算符是 Under
,如果所有迭代都在一个父项下,您将获得所有迭代。
您可以找到更多信息 here。