How can I specify the size of the type used in the following Dictionary mapping:
HasMany(x => x.WidgetSettings)
.AsMap<string>(idx => idx.Column("SettingKey"),
elem => elem.Column("SettingValue"))
.Not.LazyLoad()
.Table("WidgetSettings");
The mapping defaults both column types to varchar(255) and I want the SettingValue colume to be nvarchar(MAX) for example. How can this be achieved?