-
Notifications
You must be signed in to change notification settings - Fork 37
Open
Description
\Implementation\FixedLengthLineBuilder.cs
protected override string TransformFieldValue(IFixedFieldSettingsContainer field, string lineValue)
This doesn't check for null fields and instead pads the field no matter what.
I ended up needing to add the following before the padding output to the above function:
if (field.IsNullable && lineValue == field.NullValue)
return lineValue;
Metadata
Metadata
Assignees
Labels
No labels