Using FluentMigrator, the default creation of a Column using .AsString() results in an nvarchar(255). Is there a simple way (before I modify the FluentMigrator code) to create a column of type nvarchar(MAX)?
Using FluentMigrator , the default creation of a Column using .AsString() results in an
Share
You could create an extension method to wrap .AsString(Int32.MaxValue) within .AsMaxString()
e.g.