AutoMapper

AutoMapper entry point.

Used to create low runtime overhead mapper for object or struct.

Mappings are compile-time checked.

Constructors

this
this()

Members

Functions

createRuntimeContext
RuntimeAutoMapper createRuntimeContext()

It create a RuntimeAutoMapper that is an AutoMapper more suitable for runtime operation. It means that errors are thrown at runtime.

map
TDest map(TSource source)

Map an object to another.

transform
TValue transform(TValue value)

Meta