Hi Team,
I am using below flat query to get bug details for array workitem ids passed as argument(ids) below.
Below query works perfectly fine, but it throws error in some cases "TF26180: An item with this ID already exists in the input Array"
Reason is ids array has duplicate ids, which is expected in my case. Is there any way to ignore this check or by pass this ?
var flatQuery = new Query(_store, detailsWiql.ToString(), ids);
WorkItemCollection workitems = flatQuery.RunQuery();
foreach (WorkItem wi in workitems)
{
WorkItemType worktype = wi.Type;
worktypename = worktype.Name;
}
Thanks in advance