The Entity Framework will not support enum's until EF 5.0 (scheduled to ship soon).

Entity Framework 4.2 enum support

http://blogs.msdn.com/b/efdesign/archive/2011/06/29/enumeration-support-in-entity-framework.aspx

http://visualstudiomagazine.com/blogs/data-driver/2012/01/entity-framework-4-3-gets-final-tune-up.aspx

WCF Data Services (and the oData standard) to not support enums

We understand that enums are common, unfortunately they never met tha bar so far. They are rather high on our list of things to do next though

(See: http://stackoverflow.com/a/3571378/141172)

I have begun a new project and am replacing enum's with something like:

public static class MyEnum
{
    public const int MyValue = 0;
    public const int AnotherValue = 1;
}

I'm sacrificing the guarantee that enum's provide that only defined values will be assigned in order to utilize important (and at this point fairly mature) infrastructure services.

Is there a better way to handle lagging enum support? Once EF and WCF Data Services add enum support, is there likely to be another important framework on the horizon that will introduce enum support as slowly as these two have?

link|improve this question

feedback

2 Answers

Could you use a struct with a private constructor that defines a public static member for each value:

public struct FakeEnum
    {
        public static readonly FakeEnum MyValue = new FakeEnum(0);
        public static readonly FakeEnum AnotherValue = new FakeEnum(1);

        private readonly int _value;

        private FakeEnum(int value)
        {
            _value = value;
        }

        public int Value { get { return _value; } }

        // TODO: Equals and GetHasCode and Operators Oh My!
    }

Note: I haven't actually tried this out.

link|improve this answer
What is Entity Framework going to do with the struct? Create a new table? Other than that unknown, I do like that this provides a bit more value safety. – Eric J. Feb 8 at 17:13
feedback

Well better than your example would be using an enum to hold the constant values and casting to int everytime. That way you can at least use the enum whereever it is possible rather than loosing everything.

enums never provide inescapable type-safety. But by extending the usage of enums as far as you can into the applications code and business logic, you get more and more safety against subtle usage errors.

link|improve this answer
I used the cast-to-int pattern in a previous project. That pattern made my model messy by having an enum property for use in the code, and a matching just-for-persistence property that had to be public (for EF to use it) and could be confusing for the model consumer. – Eric J. Feb 7 at 22:49
I'd use an int property only. – usr Feb 7 at 23:00
I see... still, that's a confusing code contract e.g. for the UI developers, and there's nothing at all preventing them from directly assigning an int to the property. – Eric J. Feb 8 at 0:00
Actually there's nothing preventing people assigning wrong values to the enum property either. Since the language/runtime doesn't prevent your from explicitely casting an int to any enum. So you don't get a runtime guarantee that the value will always fit into the enum. It just makes it look nice in IDEs. – Vitek Karas MSFT Feb 8 at 13:03
1  
enums never provide inescapable type-safety. But by extending the usage of enums as far as you can into the applications code and business logic, you get more and more safety against subtle usage errors. – usr Feb 8 at 18:23
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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