automapper.config

AutoMapper configuration.

Members

Classes

ForMemberConfig
class ForMemberConfig(string DestMember, string SourceMember)

Used to configure object mapper. It tells to map a member from source object to a member in dest object.

ForMemberConfig
class ForMemberConfig(string DestMember, alias Delegate)

Used to configure object mapper. It tells to map a member from source object to a user-defined delegate.

IgnoreConfig
class IgnoreConfig(string T)

Used to ignore a member in the destination object.

MapperConfiguration
class MapperConfiguration(Configs...)

Define AutoMapper configuration.

ObjectMapperConfig
class ObjectMapperConfig(TSrc, TDst, TSourceConv, TDestConv, bool Rev, Mps...)

ObjectMapper configuration.

ObjectMemberMappingConfig
class ObjectMemberMappingConfig(string T)

Base class for create a config about a member in an object mapper.

Enums

ForMemberConfigType
enum ForMemberConfigType

ForMemberConfig mapping type

Structs

DestNamingConventionConfig
struct DestNamingConventionConfig(T)

Precise the naming convention for dest object in a mapper

ReverseMapConfig
struct ReverseMapConfig

A struct that act like a flag to indicate that the mapper must be reversed.

SourceNamingConventionConfig
struct SourceNamingConventionConfig(T)

A struct to configure the naming convention used in the source object.

Templates

isConfigurationObject
template isConfigurationObject(T)

Is the provided type a configuration object ?

isDestNamingConventionConfig
template isDestNamingConventionConfig(T)

Tell if its a DestNamingConventionConfig

isForMember
template isForMember(T, ForMemberConfigType Type)
Undocumented in source.
isObjectMapperConfig
template isObjectMapperConfig(T)

Tell if it's an ObjectMapperConfig

isObjectMemberMappingConfig
template isObjectMemberMappingConfig(T)

Tell if its a ObjectMemberMappingConfig

isReverseMapConfig
template isReverseMapConfig(T)

Tell if its a ReverseMapConfig

isSourceNamingConventionConfig
template isSourceNamingConventionConfig(T)

Tell if its a SourceNamingConventionConfig

Meta