我的目的是获取 WorkItems 的父子链接类型的链接关系。
处理 165 s需要90sWorkItem
,而微软的 Team Explorer 仅使用3s来显示相同的结果。
foreach (WorkItem wi in wic) //165 count,and takes 90s to process
{
foreach(WorkItemLink wil in wi.WorkItemLinks) //I only need Parent and Child linktype
{
string linktype = wil.LinkTypeEnd.Name.ToString();
if (linktype == "Parent")
{
//some;
}
else if (linktype == "Child")
{
//some;
}
}
}