I want to localize my resources (form labels, validation messages etc) using DisplayAttribute. I have my resources in the database, but looks like DisplayAttribute uses the resx files, and the class is sealed itself so I cannot derive a subclass and override the require methods/properties.
Is there any way of handling the resourcemanager used by DisplayAttribute, to get the resources from the database instead of the resx files.
And no, I can not use the resx files.