EF5代码首先枚举和查询表EF5代码首先枚举和查询表(EF5 Code First Enums an

2019-06-02 19:23发布

我想定义EF5使用枚举,以及相应的查找表。 我知道现在EF5支持枚举,但不同的现成,似乎它仅支持该对象级别,并且默认情况下不添加一个表,这些查找值。

例如,我有一个用户实体:

public class User
{
    int Id { get; set; }
    string Name { get; set; }
    UserType UserType { get; set; }
}

和用户类型枚举:

public enum UserType
{
    Member = 1,
    Moderator = 2,
    Administrator = 3
}

我想为数据库生成创建表,是这样的:

create table UserType
(
    Id int,
    Name nvarchar(max)
)

这可能吗?

Answer 1:

这是不能直接成为可能。 EF支持作为.NET这样枚举值刚刚任命整数同级别枚举=>类枚举属性始终是在数据库整数列。 如果你想有表,以及你需要在自己的数据库初始化与外键手动创建它一起User ,并与枚举值填充它。

我做了一些对用户语音的建议 ,让更多的复杂的映射。 如果你觉得有用,你可以投票的建议。



Answer 2:

这里有一个NuGet包我做了早些时候生成查找表和应用外键,并保持与枚举同步查找表行:

https://www.nuget.org/packages/ef-enum-to-lookup

即添加到项目中并调用应用方法。

在GitHub上的文档: https://github.com/timabell/ef-enum-to-lookup



Answer 3:

我写了一个小的辅助类,创建在UserEntities类中指定的枚举数据库表。 它还会创建对引用枚举表的外键。

所以在这里,它是:

public class EntityHelper
{

    public static void Seed(DbContext context)
    {
        var contextProperties = context.GetType().GetProperties();

        List<PropertyInfo> enumSets =  contextProperties.Where(p  =>IsSubclassOfRawGeneric(typeof(EnumSet<>),p.PropertyType)).ToList();

        foreach (var enumType in enumSets)
        {
            var referencingTpyes = GetReferencingTypes(enumType, contextProperties);
            CreateEnumTable(enumType, referencingTpyes, context);
        }
    }

    private static void CreateEnumTable(PropertyInfo enumProperty, List<PropertyInfo> referencingTypes, DbContext context)
    {
        var enumType = enumProperty.PropertyType.GetGenericArguments()[0];

        //create table
        var command = string.Format(
            "CREATE TABLE {0} ([Id] [int] NOT NULL,[Value] [varchar](50) NOT NULL,CONSTRAINT pk_{0}_Id PRIMARY KEY (Id));", enumType.Name);
        context.Database.ExecuteSqlCommand(command);

        //insert value
        foreach (var enumvalue in Enum.GetValues(enumType))
        {
            command = string.Format("INSERT INTO {0} VALUES({1},'{2}');", enumType.Name, (int)enumvalue,
                                    enumvalue);
            context.Database.ExecuteSqlCommand(command);
        }

        //foreign keys
        foreach (var referencingType in referencingTypes)
        {
            var tableType = referencingType.PropertyType.GetGenericArguments()[0];
            foreach (var propertyInfo in tableType.GetProperties())
            {
                if (propertyInfo.PropertyType == enumType)
                {
                    var command2 = string.Format("ALTER TABLE {0} WITH CHECK ADD  CONSTRAINT [FK_{0}_{1}] FOREIGN KEY({2}) REFERENCES {1}([Id])",
                        tableType.Name, enumProperty.Name, propertyInfo.Name
                        );
                    context.Database.ExecuteSqlCommand(command2);
                }
            }
        }
    }

    private static List<PropertyInfo> GetReferencingTypes(PropertyInfo enumProperty, IEnumerable<PropertyInfo> contextProperties)
    {
        var result = new List<PropertyInfo>();
        var enumType = enumProperty.PropertyType.GetGenericArguments()[0];
        foreach (var contextProperty in contextProperties)
        {

            if (IsSubclassOfRawGeneric(typeof(DbSet<>), contextProperty.PropertyType))
            {
                var tableType = contextProperty.PropertyType.GetGenericArguments()[0];

                foreach (var propertyInfo in tableType.GetProperties())
                {
                    if (propertyInfo.PropertyType == enumType)
                        result.Add(contextProperty);
                }
            }
        }

        return result;
    }

    private static bool IsSubclassOfRawGeneric(Type generic, Type toCheck)
    {
        while (toCheck != null && toCheck != typeof(object))
        {
            var cur = toCheck.IsGenericType ? toCheck.GetGenericTypeDefinition() : toCheck;
            if (generic == cur)
            {
                return true;
            }
            toCheck = toCheck.BaseType;
        }
        return false;
    }

    public class EnumSet<T>
    {
    }
}

使用的代码:

public partial class UserEntities : DbContext{
    public DbSet<User> User { get; set; }
    public EntityHelper.EnumSet<UserType> UserType { get; set; }

    public static void CreateDatabase(){
        using (var db = new UserEntities()){
            db.Database.CreateIfNotExists();
            db.Database.Initialize(true);
            EntityHelper.Seed(db);
        }
    }

}


Answer 4:

我创建了一个包吧

https://www.nuget.org/packages/SSW.Data.EF.Enums/1.0.0

使用

EnumTableGenerator.Run("your object context", "assembly that contains enums");

“你的对象上下文” - 是你的EntityFramework的DbContext“组件包含枚举” - 包含您的枚举组件

呼叫EnumTableGenerator.Run作为种子功能的一部分。 这将创建一个SQL Server表中每个枚举,并用正确的数据填充它。



Answer 5:

我已经包含了这个答案,因为我已经制成了一些额外的变化@HerrKater

我做了一个小除了杜林卡特尔的答案 (也是基于蒂姆·阿贝尔的评论)。 更新是使用方法从displayName属性获取枚举值是否存在其他分裂PascalCase枚举值。

 private static string GetDisplayValue(object value)
 {
   var fieldInfo = value.GetType().GetField(value.ToString());

   var descriptionAttributes = fieldInfo.GetCustomAttributes(
     typeof(DisplayAttribute), false) as DisplayAttribute[];

   if (descriptionAttributes == null) return string.Empty;
   return (descriptionAttributes.Length > 0)
   ? descriptionAttributes[0].Name
   : System.Text.RegularExpressions.Regex.Replace(value.ToString(), "([a-z](?=[A-Z])|[A-Z](?=[A-Z][a-z]))", "$1 ");
 }

更新杜林Katers例如调用方法:

 command = string.Format("INSERT INTO {0} VALUES({1},'{2}');", enumType.Name, (int)enumvalue,
                                        GetDisplayValue(enumvalue));

枚举实例

public enum PaymentMethod
{
    [Display(Name = "Credit Card")]
    CreditCard = 1,

    [Display(Name = "Direct Debit")]
    DirectDebit = 2
}


Answer 6:

要定制你的新一代工作流程

1. Copy your default template of generation TablePerTypeStrategy

Location : \Microsoft Visual Studio 10.0\Common7\IDE\Extensions\Microsoft\Entity Framework Tools\DBGen.

2. Add custom activity who realize your need (Workflow Foundation)

3. Modify your section Database Generation Workflow in your project EF


文章来源: EF5 Code First Enums and Lookup Tables