Namespace Dse.Mapping.TypeConversion
Classes
DefaultTypeConverter
A default implementation of TypeConversionFactory that doesn't do any user defined conversions.
EnumStringMapper<T>
A class that maps strings to enum values. Uses a cache internally to speed lookups.
NullableEnumStringMapper<T>
Static class for mapping between strings and nullable enums. Uses a cache internally to speed lookups.
TypeConverter
A factory for retrieving Functions capable of converting between two Types. To use custom Type conversions, inheritors should derive from this class and implement the GetUserDefinedFromDbConverter<TDatabase, TPoco>() and GetUserDefinedToDbConverter<TPoco, TDatabase>() methods.