It is not good that convert target is fieldValue.ToString(). converter.ConvertFrom() is appropriate ? ``` public object ConvertFromField(object fieldValue) { return _converter.ConvertFromString(fieldValue == null ? "" : fieldValue.ToString()); } ```