AutoMapper.Attributes
AutoMapper.Attributes copied to clipboard
A convenient way to create AutoMapper type mappings using attributes.
I've reported the full details here: https://stackoverflow.com/questions/50743285/automapper-mapsto-attribute-does-not-work-on-referenced-classes/
Fixes the https://github.com/schneidenbach/AutoMapper.Attributes/issues/23 Also forces a user to explicitly set the attribute on their DTOs. There is no point in hoping for an inheritance since the derived class needs its...
PasteBin: https://pastebin.com/nGYL300T The repro above shows a weird bug in the system: When we have class **B** inherited from class **A**, and both are decorated with independent `MapsFrom` attributes with...
Adds ability to specify MemberList option with MapsFrom/MapsTo attributes.
Trying to use this with a .NET Core 2 project, however, the examples do not work. I'm currently working on a solution, but figured i'd put this on here to...
Hi, How can I achieve the same functionality as open generic with convert using from the Automapper.Attributes? Thanks, Attiqe
Revised earlier updates to just update existing V5 with updated packages/dependencies and updated to .NET Standard 2.0
The following test correctly fails: ``` public class Foo { public string Bar { get; set; } } [MapsFrom(typeof(Foo))] public class Qux { public string Bar { get; set; }...