Example: i have a field "STATUS" with coded values 0= "INVALID" , 1 = "VALID" , the code below get only the values 0 and 1, so the value that i need is the description. How to bind a field with code value domain??.
_myfeaturedatagrid.Columns.Add(new DataGridTextColumn()
{
CanUserSort = true,
SortMemberPath = "STATUS",
Binding = new System.Windows.Data.Binding("STATUS"),
Header = "PRIMARY STATUS" ,
});