Using ADO.net Entity Framework 4 with Enumerations? How do I do it?

后端 未结 1 1955
遇见更好的自我
遇见更好的自我 2021-01-05 04:25

Question 1: I am playing around with EF4 and I have a model class like :

public class Candidate {

public int Id {get;set;}
public string FullName {get;set;}         


        
1条回答
  •  伪装坚强ぢ
    2021-01-05 05:05

    Apparently int <-> enum won't be supported in the initial release of EF4. I agree with those who say this sucks.

    I am using a property that does the casting for me

    public partial class MyEntity
    {
      public MyEnum HurrEnum {get{return (MyEnum)Hurr;} set{Hurr = (int)value;}}
    }
    

    It doesn't look so bad if you name stuff "correctly" (which means, so it doesn't look stupid). For instance, I have a ReasonCode enum that's stored as a Reason in the database, so I have Reason and ReasonCode versions of the property. Works out well enough, for now.


    First, I'm just starting to use EF4 so I'm not intimate with how it works. I assume its similar to L2S but with better entity support. Take this with a grain of salt.

    To be clear, this property is for convenience and I'm 90% sure EF will react badly if you try to query the database using this property. EF doesn't know about your property and cannot use it to construct sql. So this:

    var foo = from x in Db.Foos where x.HurrEnum == Hurr.Durr select x;
    

    will probably fail to behave as expected where this:

    var foo = Db.Foos.Where(x=> x.HurrEnum == Hurr.Durr);
    

    probably will result in the entire Foos table being brought into memory and then parsed. This property is for convenience and should be used only after the database has been hit! Such as:

     // this is executed in the sql server
     var foo = Db.Foos.Where(x=> x.Hurr == 1 || x.Hurr == 2).ToArray();
     // this is then done in memory
     var hurrFoos = foo.Where(x=> x.HurrEnum == Hurr.Durr);
    

    If you don't understand the difference is here then you're playing with fire. You need to learn how EF/L2S interprets your code and converts it into sql statements.

    0 讨论(0)
提交回复
热议问题