Title kinda says it all.
There appears to be two ways to mark a field as "Please don't show on the UI" with attributes. One lives in the DataAnnotations namespace, which is where I think it belongs, and the other lives in the MVC-specific namespace System.Web.Mvc, which I think is the wrong place.
It means that for an MVC app, I have to dirty my domain class with the MVC namespace, rather than use the "more generic" ComponentModel.DataAnnotations.
Is there any way to have the MVC framework take notice of the Display() attribute?