I have an abstract domain object that is consumed by both a web and windows application. This domain object sits in a an old namespace along with any derived classes.
For my web application I would like to use data annotations. Usually I would create a partial class to the domain object and provide it a MetaData class. However, I am unable to touch the namespace where the domain objects reside and there lies my problem.
Is there any solution for providing partial classes/metadata to domain objects in another namespace? Remember I can't touch the domain objects namespace at all.