Hi,
Is there any way to apply an attribute to a model file in ASP.NET Dynamic Data to hide the column?
For instance, I can currently set the display name of a column like this:
[DisplayName("Last name")]
public object Last_name { get; set; }
Is there a similar way to hide a column?
Edit: Many thanks to Christian Hagelid for going the extra mile and giving a spot-on answer :-)