Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Since EF4 is lacking enum support, I've been trying to implement the workaround listed at:

http://blogs.msdn.com/b/alexj/archive/2009/06/05/tip-23-how-to-fake-enums-in-ef-4.aspx?PageIndex=1&CommentPosted=true#comments

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.

share|improve this question
will you accept answer or close question? – Nuri YILMAZ Feb 26 at 12:56

1 Answer

Yes, enum type properties are not supported by EF4 (or CTP5); of course we need them, and I've heard that they will be implemented next release.

Here is a workaround:

public enum FieldDataType
{ 
    Image,
    RawText,
    Ajax
}

public class DefinitionDynamicField
{
    public int FieldType { get; set; }

    [NotMapped]
    public FieldDataType FieldTypeObserver 
    { 
        get { return (FieldDataType)FieldType; }
        set { return FieldType = (int)value; }
    }
}

We use FieldTypeObserver instead of FieldType.

It is ugly but it works.

share|improve this answer
now; EF4.3.1 and EF5 support enum types. blogs.msdn.com/b/adonet/archive/2012/02/29/… – Nuri YILMAZ Mar 3 '12 at 13:58
are you sure about EF4.3.1? I had a look at the link and while it says its there for EF5, I don't see it being mentioned for EF4.3.1 - I can't get it working on EF4.3.1 either. – Martin Clarke Aug 15 '12 at 8:54
you are right. I'm really sorry for that. only EF5 support enum types. – Nuri YILMAZ Aug 15 '12 at 15:45
no worries, your workaround works fine :) – Martin Clarke Aug 15 '12 at 15:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.