This question is locked. New answers and comments are not allowed.
I have a datagrid that gets a resultset from a WCF Service. Before this scenario I was using domain services and the following code in my model would work to set the column headers for the grid:
Apparently this won't work with WCF Services. Is there any other way for me to set custom Column headers for my grid, preferably in the model class library itself?
Thanks
[
Display(Name = "Class ID")]
public int ClassID { get; set; }
( Using System.ComponentModel.DataAnnotations)
Apparently this won't work with WCF Services. Is there any other way for me to set custom Column headers for my grid, preferably in the model class library itself?
Thanks