通过 API 自定义 TFS 查询
我有一个工作实用程序,可以通过 TFS API 查询 TFS 工作项存储。我可以通过这种方式检索各种数据,包括列出存储的查询名称。但是,我找不到自定义查询的位置。有人能指出我正确的方向吗?
谢谢
I have a working utility that queries the TFS workitem store via the TFS API. I can retrieve various pieces of data in this way including listing the Stored query names. However, I can't find the location of Custom Queries. Can anybody point me in the right direction?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您提到您在哪个文件夹中找不到自定义查询?团队查询或我的查询,无论如何,如果您指的是我的查询,您将需要编写如下代码:
但请记住,我的团队查询将根据登录凭据进行
谢谢
M.Radwan
You mentioned you can't find custom query, in which folder? Team Query or My Query, anyway if you mean my Query, you will need to write code like the following:
But remember My team Queries will be per login credential
Thanks
M.Radwan
我认为您想要的信息位于以您的团队项目集合 (Tfs_YourCollectionName) 命名的 TFS-DB 中,位于表 dbo.QueryItems
我不知道有什么 API 方法可以获取列中包含的信息,无论如何直接在表上使用 SQL 选择应该可以工作(假设您有访问权限)。
I think the info you 're after resides in the TFS-DB named after your Team Project Collection (Tfs_YourCollectionName), under table dbo.QueryItems
I wouldn't know of an API method to obtain the info contained in the columns, directly selecting with SQL on the table should work anyhow (given that you have access).