TFS 查询 - 历史记录部分 - 按日期添加的评论

发布于 2024-11-19 08:44:55 字数 51 浏览 0 评论 0原文

如何在 TFS 中编写查询以向我显示过去 2 天内在工作项的历史记录部分添加评论的用户?

How do I write a query in TFS to show me users that have added comments in the history section of a work item in the past 2 days?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

秋风の叶未落 2024-11-26 08:44:55
       Team Project      =               @ Project

And    Work Item Type    =               [Any]

And    History           Contains        MY_KEY_PHRASE

And    Changed Date      >=              @Today - 2

由于 Contains 不能为空,我们必须向历史搜索添加一个值。

MY_KEY_PHRASE = 无论您想在评论字段中输入什么内容,作为标准,以识别更改(例如“评论”或“抄送”或“.”等)。

       Team Project      =               @ Project

And    Work Item Type    =               [Any]

And    History           Contains        MY_KEY_PHRASE

And    Changed Date      >=              @Today - 2

Since Contains cannot be null we have to add a value to the History search.

MY_KEY_PHRASE = Whatever you want to put in your comments field, as a standard, to identify changes (such as "comments" or "cc" or "." etcetera).

一紙繁鸢 2024-11-26 08:44:55

最简单的解决方案是在任何注释之前使用前缀,因此任何需要编写注释的人只需在注释之前写上“注释:”关键字,然后在注释之前添加回车符,然后

编辑查询

添加新条件,如下所示:(

  1. 和/或)- ->以及
  2. (场)--->历史记录
  3. (操作员)-->包含
  4. (值)-->评论

感谢

M.Radwan

The easiest solution is to use prefix before any comments, so any one need to write comments just write "Comments:" keyword followed by carriage return before his comments and then

Edit the query

Add new criteria as the following:

  1. (And/Or)--> And
  2. (Field)---> History
  3. (Operator)--> Contains
  4. (Value)--> Comments

Thanks

M.Radwan

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文