Click or drag to resize

MapperTruncateBehavior Enumeration

Behavior of the mapper when fields exceed their length.

Namespace:  NetQuarry.Data
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public enum MapperTruncateBehavior
Members
  Member nameValueDescription
Ignore0 Default behavior. If a field's data exceeds the max length of the underlying column a SQL error is raised.
Truncate1 Truncate all character fields to their MaxLength. Same as setting MaxLengthTruncate on individual fields.
Error2 Raise an error if any of the data in the fields exceed the MaxLength property.
See Also