11

我正在尝试使用 CF 为现有数据库构建模型。我有一列忘记设置合理的默认值。而不是通过更改初始迁移的纯度来妥协,我只是想我会创建另一个迁移(这就是迁移的目的,对吧?:)

public override void Up()
{
    AlterColumn("Config", "DefaultTaxPerDollar", c => c.Decimal(nullable: false, precision: 19, scale: 5, defaultValue: 0.087m));
}

public override void Down()
{
    AlterColumn("Config", "DefaultTaxPerDollar", c => c.Decimal(nullable: false, precision: 19, scale: 5, defaultValue: 0.0m));

}

但这会Column already has a DEFAULT bound to it.从 SQL Server 产生错误。

如何使用 CF 迁移更改默认值?或者,如何简单地删除默认值(然后用不同的值重新创建它)?

编辑:

下面是生成的 SQL:

ALTER TABLE [Config] ADD CONSTRAINT DF_DefaultTaxPerDollar DEFAULT 0.087 FOR [DefaultTaxPerDollar]
ALTER TABLE [Config] ALTER COLUMN [DefaultTaxPerDollar] [decimal](19, 5) NOT NULL

我想我可能已经找到了一个解决方案,使用受这篇Sql()文章启发的一些复杂 SQL 的方法。问题源于 SQL Server 使用约束来实现默认值(哦!我多么想念 MySQL!)并为约束生成名称。因此,Code First 团队不能简单地更改或删除/重新创建默认值。

4

2 回答 2

15

删除受 SQL Server 实体框架生成的反向迁移启发的默认约束

    public static void DropDefaultConstraint(string tableName, string columnName, Action<string> executeSQL)
    {
        string constraintVariableName = string.Format("@constraint_{0}", Guid.NewGuid().ToString("N"));

        string sql = string.Format(@"
            DECLARE {0} nvarchar(128)
            SELECT {0} = name
            FROM sys.default_constraints
            WHERE parent_object_id = object_id(N'{1}')
            AND col_name(parent_object_id, parent_column_id) = '{2}';
            IF {0} IS NOT NULL
                EXECUTE('ALTER TABLE {1} DROP CONSTRAINT ' + {0})",
            constraintVariableName,
            tableName,
            columnName);

        executeSQL(sql);
    }

它稍微短一些,但用法是一样的。

DropDefaultConstraint(TableName, "DefaultTaxPerDollar", q => Sql(q));

Guid 用于创建一个唯一的变量名称,以防您要在一次迁移中删除多个约束。

于 2012-11-07T17:59:13.957 回答
6

这是一个受这篇文章启发的解决方案。这不完全是一种优雅的方法,但它对我有用。


        public static void DropDefaultConstraint(string tableName, string columnName, Action executeSQL)
        {
            // Execute query that drops the UDF that finds the default constraint name
            var query = @"
                    -- recreate UDF 
                    if object_id('[dbo].[GetDefaultConstraintName]') is not null
                    begin 
                        drop function [dbo].[GetDefaultConstraintName]
                    end
                ";
            executeSQL(query);

            // Execute query that (re)creates UDF that finds the default constraint name
            query = @"
                    create function [dbo].[GetDefaultConstraintName] (
                        @TableName varchar(max),
                        @ColumnName varchar(max))
                    returns varchar(max)
                    as
                    begin
                        -- Returns the name of the default constraint for a column

                        declare @Command varchar(max)
                        select
                            @Command = d.name
                        from
                            ((
                            sys.tables t join
                            sys.default_constraints d
                                on
                                    d.parent_object_id = t.object_id) join
                            sys.columns c
                                on
                                    c.object_id = t.object_id and
                                    c.column_id = d.parent_column_id)
                        where
                            t.name = @TableName and
                            c.name = @ColumnName
                        return @Command
                    end
                ";
            executeSQL(query);

            // Execute query that actually drops the constraint
            query = string.Format(@"
                    -- Use UDF to find constraint name
                    DECLARE @Constraint_Name VARCHAR(100)
                    SET @Constraint_Name = [dbo].GetDefaultConstraintName('{0}','{1}')

                    if LEN(@Constraint_Name) > 0 
                    BEGIN
                        DECLARE @query VARCHAR(300)
                        SET @query = 'ALTER TABLE {0} DROP CONSTRAINT ' + @Constraint_Name

                        execute(@query)
                    END", tableName, columnName);
            executeSQL(query);
        }

在您的迁移中,您可以这样称呼它:

DropDefaultConstraint(TableName, "DefaultTaxPerDollar", q => Sql(q));

使用 lamba 的原因是因为您必须对Sql(). 我永远无法让它作为一个长查询工作 -GO在许多不同的地方尝试了许多关键字组合。我还尝试反转第一个查询的逻辑,以便仅在 UDF 不存在时才重新创建它,并且它不起作用。无论如何,我想每次都重新创建它会更强大。

于 2012-08-15T23:57:06.023 回答