Specifying a list of items for the parameters with WorkItemStore.Query in TFS
问题 I've got the following WIQL query for a TFS project: string query = "SELECT * FROM Issue WHERE [System.TeamProject] = @Project "+ "AND [Assigned To] IN (@AssignedTo)"; Dictionary<string, object> parameters = new Dictionary<string, object>(); parameters.Add("Project","test"); parameters.Add("AssignedTo","'chris','tfsuser'"); WorkItemStore.Query(query, parameters); This is being run via the .NET TFS API. My problem is with the AssignedTo parameter. How is this meant to be specified? I've tried