I have decorated my model using Metadata classes attached to my model classes via the MetadataType attribute. I have some use the Range attribute, Required attribute, etc. and some custom attributes I have created.
Now I want to hook into the rendering engine (or whatever it is called) of the Dynamic Data framework and be able to change the way the UI is rendered based on my custom attributes as well as the standard System.ComponentModel.DataAnnotations attributes.
Also, I might want to use ASP.NET MVC, so keep that in mind.
How do I do that? Pointing me to links would be great if you don't want to be verbose about explaining the nitty-gritty.
Thanks!