Everytime I'm looking for AutoMapper stuff on StackOverflow, I'm reading something about ValueInjecter.
Can somebody tell me the pros and cons between them (performance, features, API usage, extensibility, testing) ?
|
Everytime I'm looking for AutoMapper stuff on StackOverflow, I'm reading something about ValueInjecter. Can somebody tell me the pros and cons between them (performance, features, API usage, extensibility, testing) ? |
|||||||||||||||||||||
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
as the creator of ValueInjecter, I can tell you that I did it because I wanted something simple and very flexible I really don't like writing much or writing lots of
ValueInjecter is something like mozilla with it's plugins, you create ValueInjections and use them there are built-in injections for flattening, unflattening, and some that are intended to be inherited and it works more in an aspect type of way, you don't have to specify all properties 1-to-1, instead you do something like: take all the int properties from source which name ends with "Id", transform the value and set each to a property in the source object with same name without the Id suffix and it's type is inherited from Entity, stuff like that so one obvious difference, ValueInjecter is used even in windows forms with flattening and unflattening, that's how flexible it is (mapping from object to form controls and back) Automapper, not usable in windows forms, no unflatenning, but it has good stuff like collections mapping, so in case you need it with ValueInjecter you just do something like:
you can also use ValueInjecter to map from anonymous and dynamic objects differences:
|
|||||||||||||||||||||
|
|
Since I've never used any of the other tools, I can only talk about AutoMapper. I had a few goals in mind for building AutoMapper:
If you want to do these things, AutoMapper works very well for you. Things AutoMapper doesn't do well are:
The reason being I've never needed to do these things. For the most part, our entities don't have setters, don't expose collections, etc. so that's why it's not there. We use AutoMapper to flatten to DTOs and map from UI models to command messages and the like. That's where it works really, really well for us. |
|||
|
I tried both and prefer ValueInjecter because it's so simple:
That's all there is to know for the vast majority of my injection needs. It can't possibly get more simple and elegant than this. |
|||||||||||||||||
|
|
This is a question I've been researching too, and for my use case, it seems to be valueinjecter hands down. It requires no prior setup to use (may hit performance I guess, although if smartly implemented it could cache the mappings for future invocations rather than reflecting each time), so you don't need to predefine any mappings before using them. Most importantly however, it allows reverse mapping. Now I may be missing something here as Jimmy mentions that he sees no use case where its necessary, so maybe I have the pattern wrong, but my use case is that I'm creating a ViewModel object from my ORM. I then display this on my webpage. Once the user finishes I get the ViewModel back in as a httppost, how does this get converted back to the original ORM classes? I'd love to know the pattern with automapper. With ValueInjector it is trivial, and it will even unflatten. e.g Creating a new entity The model created by the entityframework (model first):
The ViewModel (which I can decorate with validators):
The ViewController:
To my mind, it doesn't get much simpler than that? (So this begs the question, whats wrong with the pattern that I run into this (and it seems many others do to), that its not seen as of value to AutoMapper?) However, if this pattern as decscribed, is one you want to use, then my vote is valueinjecter by a country mile. |
|||||||||||||||
|
|
I just checked out ValueInjecter, following this question... |
|||
|
|