TFS 查询 - 历史记录部分 - 按日期添加的评论
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于 Contains 不能为空,我们必须向历史搜索添加一个值。
MY_KEY_PHRASE = 无论您想在评论字段中输入什么内容,作为标准,以识别更改(例如“评论”或“抄送”或“.”等)。
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).
最简单的解决方案是在任何注释之前使用前缀,因此任何需要编写注释的人只需在注释之前写上“注释:”关键字,然后在注释之前添加回车符,然后
编辑查询
添加新条件,如下所示:(
感谢
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:
Thanks
M.Radwan