I am using Entity Framework and generating my POCO classes via T4 - these classes inherit from nothing and are very plain and simple (created via template in vs 2010)
I tried using the Metadatatype Attribute so i could create a buddy class but when i did this i no longer was able to see my properties... if i removed the attribute! the properties appeared.
Anyway, searching deeper i found this statement from Microsoft
The associated class must be used with EDM or LINQ-to-SQL models because CLR
types cannot mark existing properties with new attributes. If you are working with CLR
objects directly, sometimes referred to as Plain Old CLR Object (POCO) types, you can
apply the attributes directly to the model
So it appears it doesn't work?? Anyway its very difficult for me to insert my Data Annotation on the MODEL itself because its created via T4 hence if i edit it and then re-run the tool it will remove all my changes.
Has anybody managed to get this to work?
I am really struggling.