LLBLGen version 2.6
we recently increased a column from 5 characters to 20 and we get the following error when trying to insert a 6 character value:
The value specified will cause an overflow error in the database. Value length: 6. Column max. length: 5
Parameter name: Htank01.
After regenerating I see this metadata on that property in our Domain project:
''' <summary>The Htank01 property of the Entity TblGrossmanOrotrn<br/><br/>
''' </summary>
''' <remarks>
''' Mapped on table field: "tblGrossman_Orotrn"."HTank01"<br/>
''' Table field type characteristics (type, precision, scale, length): Char, 0, 0, **20**<br/>
''' Table field behavior characteristics (is nullable, is PK, is identity): True, False, False
''' </remarks>
It clearly shows that the length is now 20 but our code is still erroring.
Any assistance?