Currently (EF Core 1.1.0), you can directly specify the type of column: .HasColumnType("char(123)")
Please make sure your database engine understands this value! It is transmitted “as is”.
Also note that here you must write all the necessary measurement / length / accuracy values, as the value .HasMaxLength()will be ignored.