About 50 results
Open links in new tab
  1. 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, …

  2. Dependency Injection — AutoMapper documentation

    services.AddAutoMapper(profileAssembly1, profileAssembly2 /*, ...*/); or marker types: services.AddAutoMapper(typeof(ProfileTypeFromAssembly1), typeof(ProfileTypeFromAssembly2) /*, …

  3. 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. 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, …

  7. docs.automapper.org

    ª"dy.cfxÌ´‹Ó\ T £•\ŽÍöLè ó¼qlË*mºs£!Åý7 fÔÒÂïH‚a f æ F$Ì´‘q ÙøSªš ™«‹6×nÛáù´÷oÿc\ÜC²´G^HL9+¦µÍÉ”çÏóù`už®V¤´Efc'G>RñgˆÙòQß¹ìþ°pá‚Åî3”¹OIà®âvÕ>öpr'Êž)æ …

  8. 10.0 Upgrade Guide — AutoMapper documentation

    Mapping from dynamic in .NET 4.6.1 Due to a refactoring of IMapper, you might need to add a cast to object when mapping from dynamic.

  9. 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 …

  10. 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 …