I've started to use https://github.com/robconery/massive for a project, I wonder if there is any mapping tool that allows support for Dynamic to static type mapping?
I've used AutoMapper previously, does AutoMapper support this?
==== Edit =====
In reply to the first answer (Which seem to have now been deleted)
I am aware of the DynamicMap function from AutoMapper, however I believe this function is for running maps without creating the Map first. In my example below it does not work.
dynamic CurUser = _users.GetSingleUser(UserID);
var retUser = Mapper.DynamicMap<UserModel>(CurUser);
_users.GetSingleUser(UserID); Returns a dynamic Object.