我正在尝试运行此查询,但它不断抛出 TF51005 查询引用了一个不存在的字段。由 [Microsoft.VSTS.Common.Severity] 引起,我不知道我应该如何拉严重性
select [System.Id], [System.WorkItemType],[Microsoft.VSTS.Common.Severity]
from WorkItems
我正在使用带有此代码的控制台应用程序
foreach (WorkItem workItem in queryResults)
{
Console.WriteLine("ID: {0}", workItem.Id);
Console.WriteLine("Title: {0}", workItem.Title);
Console.WriteLine("State: {0}", workItem.State);
Console.WriteLine("Reason: {0}", workItem.Reason);
}
而且我意识到即使我可以拉列严重性也不会列为工作项属性。不能提取这些数据吗?