Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
migratordotnetを使用してSQLServer2008データベースを同期しており、テキストタイプの列を作成する必要があります...
System.Data.DbType.Textがないため、これを行う方法について少し迷っていますか?
いくつかの試行錯誤でそれを解決しました...
AnsiStringのDbTypeとint.MaxValueの長さがトリックを実行します
Database.AddColumn("Notification", "Body", DbType.AnsiString, int.MaxValue);