实体框架迁移不包括DefaultValue数据注释(EF5RC)

时间:2012-07-18 16:42:11

标签: c# ef-migrations entity-framework-5

我有一个看起来像这样的课程:

[Table("Subscribers", Schema = "gligoran")]
public class Subscriber
{
    [Key]
    public string Email { get; set; }

    [Required]
    [DefaultValue(true)]
    public bool Enabled { get; set; }
}

创建迁移以包含此类时,我得到:

public partial class AddSubscriberClass : DbMigration
{
    public override void Up()
    {
        CreateTable(
            "gligoran.Subscribers",
            c => new
                {
                    Email = c.String(nullable: false, maxLength: 128),
                    Enabled = c.Boolean(nullable: false),
                })
            .PrimaryKey(t => t.Email);

    }

    public override void Down()
    {
        DropTable("gligoran.Subscribers");
    }
}

我希望Enabled行看起来像这样:

Enabled = c.Boolean(nullable: false, defaultValue: true),

我当然可以自己做,但我只想问是否有办法让Entity Framework自动完成。

我正在使用最新的Entity Framework 5 RC(5.0.0-rc.net40)。

2 个答案:

答案 0 :(得分:11)

EF根本不使用DefaultValue属性=它不是模型的一部分,因此迁移不会看到它。您可以在Data UserVoice上建议支持此注释。

答案 1 :(得分:6)

作为Ladislav评论的额外内容。哪个是对的。你不能在模型中做到这一点。如果您想使用基于代码的迁移。即使用PM命令行开关Add-Migration / Update Database,然后这种方法将生成的类引入流程。然后你可以有默认值。请参阅从DBMigrations派生的类。见http://msdn.microsoft.com/en-us/library/system.data.entity.migrations.dbmigration.addcolumn%28v=vs.103%29.aspx 您可以使用特定的Column builder Lamda表达式。这允许默认值。

namespace MigrationsDemo.Migrations
{
  using System;
  using System.Data.Entity.Migrations;

public partial class SomeClassThatisATable : DbMigration
{
    public override void Up()
    {
        AddColumn("MyTable", "MyColumn", c => c.String( defaultvalue:"Mydefault"  ));
    }