Error to create field from the complex object in Entity Framework migration
问题 I am studying Entity Framework migration to .Net Core and when I will execute the migration I get an error. The problem is in create field to a complex field. I have the config class and in debug the code is executed. Config class public void Configure(EntityTypeBuilder<City> builder) { base.Configure(builder); builder.Property(x => x.Name) .IsRequired() .HasColumnType(VARCHAR) .HasMaxLength(150); builder.Property(x => x.Initials) .HasColumnType(VARCHAR) .HasMaxLength(5); builder.Property(x =