WorkItem Object Mapper (WOM) Activity Ranking
According to the CodePlex Statistics RSS feed, WOM was the 6th most active project this week.
Most Active Projects
As you can see, I´m working hard on having WOM ready asap so you can stop working with this:
1: WorkItem.Fields["System.Description"] = "Description";
And start having this:
1: Task.Description = "Description";
Or even better:
1: FilterCollection fc = Filter.Equal(Feature.Properties.Status, Status.Active)
2: & Filter.Equal(Feature.Properties.AssignedTo, "Heynemann_cp");
3:
4: ICollection<Feature> feats =
5: QueryManager.GetWorkItems<Feature>(fc);
6:
7: //to get your assigned active features to do for example.
Iteration 2 is almost out. The Query engine is done and tested. I just want to write a few more unit tests. I still have some admin tasks to do (SandCastle documentation for example) and the CodePlex and TFS Object models to do.
After that I´m on to Iteration 3. That´s the iteration where I´ll build the Reverse engineering support. That means that you will be able to automatically generate the classes for the given workitem types in your TFS.
Keep feedback coming guys.

#67