Since EF4 is lacking enum support, I've been trying to implement the workaround listed at:
However, I'm using the POCO generator for EF4 (which the article does NOT use) and I keep getting the following runtime error:
Mapping and metadata information could not be found for EntityType...
Presumably this is because CreateObjectSet doesn't understand the wrapper class.
Has anyone been able to find a suitable solution for supporting enums in EF4 with generated POCOs?
Thanks.