In my model i have some entities decorated with StringLength attribute:
[StringLength(128)] public string FirstName { get; set; }
Also i ha
Seems to be a bug (or omission) in the new PropertyConventionConfiguration API. The following configuration does work, so it can serve as a work-around:
PropertyConventionConfiguration
modelBuilder.Properties().Configure(x => x.HasColumnType("VARCHAR"));