I'm using the following code to get work items and their properties.
public DataTable GetBugLogData(Uri tfsUri)
{
string tfsPrrojectName = ConfigurationManager.AppSettings["tfsPrrojectName"].ToString();
string tfsAreaPath = ConfigurationManager.AppSettings["tfsAreaPath"].ToString();
string workItemQuery = String.Format(@"SELECT * FROM WorkItems WHERE [System.TeamProject] = '{0}' AND [Work Item Type] = 'Bug' AND [State] = 'Active' AND [Area Path] = '{1}'ORDER BY [Assigned To]", tfsPrrojectName, tfsAreaPath);
TfsTeamProjectCollection projCollection = TfsTeamProjectCollectionFactory.GetTeamProjectCollection(tfsUri);
WorkItemStore WIS = (WorkItemStore)projCollection.GetService(typeof(WorkItemStore));
WorkItemCollection WIC = WIS.Query(workItemQuery);
DataTable workItemsTable = new DataTable();
workItemsTable.Columns.AddRange(new DataColumn[6]
{ new DataColumn("Id", typeof(int)),
new DataColumn("Title", typeof(string)),
new DataColumn("Created By",typeof(string)),
new DataColumn("State",typeof(string)),
new DataColumn("Assigned To",typeof(string)),
new DataColumn("Type",typeof(string))
});
foreach (WorkItem wi in WIC)
{
workItemsTable.Rows.Add(wi.Id, wi.Title, wi.CreatedBy.ToString(), wi.State.ToString(), (wi.Fields["Assigned To"].Value).ToString(), wi.Type.Name.ToString());
}
workItemsTable.DefaultView.Sort = "[Assigned To]";
return workItemsTable;
}
Now my requirement is to get Assigned To Email Id so that i can notify him by sending a mail to his email address.I didn't find anything regarding.If anyone can suggest some code sample for this it would be great.
We once managed to get the e-mail address of the assignedTo user with below code.
It simply connects to the active directory with full name of the user and returns the email for you.
Hope it helps!