I have an Entity Framework CodeFirst model that I'm creating from existing Database and I want to decorate some Enumerations types that are defined in Database.
For example I have a column called type which is an enum('INPUT', 'OUTPUT'). It's possible to define this by using decorations in the class properties?
I have seen that it's possible to use [EnumType] decoration but in C# string enumerations are not supported.