c# WIQL查询获取所有不同的迭代路径
本文关键字:迭代 路径 WIQL 查询 获取 | 更新日期: 2023-09-27 18:02:40
我试图通过使用wiql查询获得我们团队项目的所有不同迭代路径。
我的实际解决方案如下:
我使用这个查询
public static readonly string IterationPathsQuery = @"SELECT [System.IterationPath] FROM workitems
WHERE[System.WorkItemType] = 'Requirement'
OR[System.WorkItemType] = 'Feature'";
获取所有相关的工作项并遍历它们以获得所有不同的迭代路径。
private void FillIterationPathComboBox(WorkItemStore wiStore)
{
WorkItemCollection wiCollection = wiStore.Query(Constants.IterationPathsQuery);
var paths = new List<string>();
...
foreach (WorkItem wi in wiCollection)
{
...
if (!String.IsNullOrEmpty(wi.IterationPath) && !paths.Contains(wi.IterationPath))
{
paths.Add(wi.IterationPath);
}
}
foreach (string path in paths)
{
IterationPathComboBox.Items.Add(path);
}
}
但是这个解决方案的性能不是很好。是否有一种方法可以只查询所使用的不同迭代路径?我已经读到不支持"distinct",但也许有一种我还没有想到的方法。
WIQL查询不能过滤不同的迭代路径。这里有两个选项:
-
您可以将查询导出到Excel,并使用Excel removeduplduplicate方法过滤不同的迭代路径
-
您可以获得迭代路径的列表,然后使用LINQ删除重复和获取不同的记录。查看此网站上的代码片段。
using System; using System.Collections.Generic; using System.Data; using System.Linq; namespace AbundantCode { internal class Program { //How to Remove Duplicates and Get Distinct records from List using LINQ ? private static void Main(string[] args) { List<Employee> employees = new List<Employee>() { new Employee { EmpID = 1 , Name ="AC"}, new Employee { EmpID = 2 , Name ="Peter"}, new Employee { EmpID = 3 , Name ="Michael"}, new Employee { EmpID = 3 , Name ="Michael"} }; //Gets the Distinct List var DistinctItems = employees.GroupBy(x => x.EmpID).Select(y => y.First()); foreach (var item in DistinctItems) Console.WriteLine(item.Name); Console.ReadLine(); } } public class Employee { public string Name { get; set; } public int EmpID { get; set; } } }