Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

up vote 26 down vote accepted

AutoMapper does not support this (Massive internally uses ExpandoObject which doesn't provide which properties it has), and you are right Mapper.DynamicMap is for mapping without creating mapping configuration.

I don't know any other tool with this dynamic -> static mapping capability but maybe you can try to use one of other micro ORMs which are using POCOs instead of dynamic. Like Dapper, PetaPoco

Actually it's not hard to write yourself a mapper if you just want simple mapping:

public static class DynamicToStatic
{
    public static T ToStatic<T>(object expando)
    {
        var entity = Activator.CreateInstance<T>();

        //ExpandoObject implements dictionary
        var properties = expando as IDictionary<string, object>; 

        if (properties == null)
            return entity;

        foreach (var entry in properties)
        {
            var propertyInfo = entity.GetType().GetProperty(entry.Key);
            if(propertyInfo!=null)
                propertyInfo.SetValue(entity, entry.Value, null);
        }
        return entity;
    }
}

dynamic CurUser = _users.GetSingleUser(UserID);   
var retUser = DynamicToStatic.ToStatic<UserModel>(CurUser);
share|improve this answer
I have been struggling with this for hours this afternoon +1. Thanks – abarr Nov 6 '11 at 11:48

Check out: https://github.com/randyburden/Slapper.AutoMapper

"Slapper.AutoMapper maps dynamic data to static types"

(I am in no way affiliated, but it helped me).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.