I am using code similar to the following:

 Database.AddColumn(
             "TableName",
             new Column(
                        "ColumnName",
                        DbType.String,
                        ColumnProperty.NotNull,
                        "TypeName"));

But I am getting error as "TypeName" is not allowed in this context, allowed context are constants, constants expression but no column name.

link|improve this question

75% accept rate
What is the definition of ColumnName? Migrator.Framework.Column does have a constructor which accepts string, DbType, ColumnProperty, object – The Scrum Meister Feb 11 '11 at 6:46
Here ColumnName is just a string, i am getting complain on Default value which i am providing as string. – Avinash Feb 11 '11 at 7:21
feedback

2 Answers

Have you tried this way?

Database.AddColumn("table", new Column("colName", DbType.String, "defaultValue"));
link|improve this answer
This doesn't work either, unfortunately. – Lance Fisher May 3 at 17:19
feedback

For strings, you have to put single quotes around the default value as the ALTER statement is built with it directly. Try this:

Database.AddColumn(
         "TableName",
         new Column(
                    "ColumnName",
                    DbType.String,
                    ColumnProperty.NotNull,
                    "'TypeName'"));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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