I am using migratordotnet to sync my SQLServer 2008 database and need to create a column of type Text...

Am at a bit of a loss as to how to do this, as there is no System.Data.DbType.Text??

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Worked it out with some trial and error...

DbType of AnsiString and a length of int.MaxValue does the trick

Database.AddColumn("Notification", "Body", DbType.AnsiString, int.MaxValue);

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.