Click or drag to resize

TypedMapperGenOptions Enumeration

TypedMapper generation options.

Namespace:  NetQuarry.Metadata
Assembly:  EAP.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
[FlagsAttribute]
public enum TypedMapperGenOptions
Members
  Member nameValueDescription
CamelCase1Convert property names to a CamelCase representation. By default, property names are the same as the mapper field's key name.
NullableNumerics2Declare the numeric field properties as Nullable. By default, numeric properties are defined as their value types and 0 (or false) is returned if the value is null.
NoNullStrings4Force string properties to return an empty string instead of null when the field value is null. By default, null values are returned as null strings.
Docs8Generate more complete in-line comment headers for documentation generation.
Diagnostics16 Include diagnostic output to console when generating the TypedMapper.
See Also