Quick syntax question: I can return TFS items just fine using several other clauses, but I need to search by specific keyword. Query below:
WorkItemCollection results = wis.Query("SELECT [System.Id] FROM WorkItems WHERE [System.WorkItemType] = 'Dev Bug' AND [System.Keywords] = 'constellation'");
System.Keywords is the problem, this part of the clause is not correct. But I cannot find the right syntax anywhere. Help please!!