Method OnTypeChange<TFrom, TTo>()
Field type change with custom conversion.
builder.Property(p => p.Price)
.OnTypeChange<string, decimal>()
.Using(v => decimal.Parse(v));
public ITypeChangeMigrationBuilder<TProps, TFrom, TTo> OnTypeChange<TFrom, TTo>()