About 145 results
Open links in new tab
  1. AutoMapper uses a fluent configuration API to define an object-object mapping strategy. AutoMapper uses a convention-based matching algorithm to match up source to destination values.

  2. AutoMapper is geared towards model projection scenarios to flatten complex object models to DTOs and other simple objects, whose design is better suited for serialization, communication, messaging, …

  3. Getting Started Guide — AutoMapper documentation

    What makes AutoMapper interesting is that it provides some interesting conventions to take the dirty work out of figuring out how to map type A to type B. As long as type B follows AutoMapper’s …

  4. AutoMapper — AutoMapper documentation

    AutoMapper is geared towards model projection scenarios to flatten complex object models to DTOs and other simple objects, whose design is better suited for serialization, communication, messaging, …

  5. 11.0 Upgrade Guide — AutoMapper documentation

    To light them up, you need to add an using for AutoMapper.Internal and call the Internal extension method on the configuration object. Most users don’t need these advanced methods.

  6. Open Generics — AutoMapper documentation

    AutoMapper will skip open generic type maps during configuration validation, since you can still create closed types that don’t convert, such as Source<Foo>->Destination<Bar> where there is no …

  7. Mapping Inheritance — AutoMapper documentation

    Overall this feature should make using AutoMapper with classes that leverage inheritance feel more natural.

  8. Attribute Mapping — AutoMapper documentation

    Member-based attributes are declared in the AutoMapper.Configuration.Annotations namespace. If the attribute-based configuration is not available or will not work, you can combine both attribute and …

  9. Getting Started Guide — AutoMapper documentation

    How do I use AutoMapper? First, you need both a source and destination type to work with. The destination type's design can be influenced by the layer in which it lives, but AutoMapper works best …

  10. Reverse Mapping and Unflattening — AutoMapper documentation

    By calling ReverseMap, AutoMapper creates a reverse mapping configuration that includes unflattening: