0

使用 TFS oData 服务,我只看到一个具有 Type 属性的通用 WorkItem 类。如何访问风险类型的缓解、应急计划等属性或问题类型的纠正措施?

谢谢

4

1 回答 1

0

There is no specific class for each WorkItem, because you can customize and name them as you want, therefor the generic WorkItem class is used. If you want to get the value of a specific field, load the WorkItem and use following (with the fieldname you need):

wi.Fields["System.AssignedTo"].Value
于 2013-07-29T09:33:17.087 回答