views:

127

answers:

2

I'm using AutoMapper and I'd like it to trace back a source property based on the name of the mapped (flattened) destination property.

This is because my MVC controller has the name of a mapped property that it needs to provide to a service call that for sorting purposes. The service needs to know the name of the property that the mapping originated from (and the controller is not supposed to know it) in order to perform a proper call to the repository that actually sorts the data.

For example:

[Source.Address.ZipCode] maps to [Destination.AddressZipCode]

Then

Trace "AddressZipCode" back to [Source.Address.ZipCode]

Is this something that AutoMapper can do for me or do I need to resort to digging into AutoMapper's mapping data?

UPDATE

Jimmy Bogard told me that this should be possible but not in an obvious manner. It requires loading the type map and going through it. I've looked into it briefly but it seems that I need access to internal types to get to the property mapping information that is required to do reverse mapping.

UPDATE 2

I've decided to provide some more details.

When I load up the type map, I find that there are two source value resolvers in it for the implicit ZipCode mapping:

  • a AutoMapper.Internal.PropertyGetter that gets the Address.
  • a AutoMapper.Internal.PropertyGetter that gets the ZipCode.

When I have an explicit mapping (that has a lambda expression specified), I find no source value resolver but a custom resolver:

  • a AutoMapper.DelegateBasedResolver<Company,string> that I think holds my explicit mapping lambda expression.

Unfortunately these resolvers are internal so I can only access them through reflection (which I really don't want to do) or by changing the AutoMapper source code.

If I could access them, I could solve the problem by either walking through the value resolvers or by inspecting the custom resolver although I doubt it that would lead me back to the mapping lambda expression which I need to build the unflattened property name (actually a series of property names separated by dots).

A: 

I ran into a similar need with AutoMapper. Here is the solution that I can up with. I have only tested this against very simple mappings. Mainly one class to another with only properties being used (basically the default behavior of Mapper.CreateMap. I am assuming that there is only one mapping, so I use First instead of iterating over the collections.

    private MemberInfo getSource(Type destinationType, string destinationPropertyname)
    {
        TypeMap map = Mapper.GetAllTypeMaps().Where(m => m.DestinationType.Equals(destinationType)).First();

        IEnumerable<PropertyMap> properties = map.GetPropertyMaps().Where(p => p.DestinationProperty.Name.Equals(destinationPropertyname, StringComparison.CurrentCultureIgnoreCase));

        PropertyMap sourceProperty = properties.First();

        IMemberGetter mg = sourceProperty.GetSourceValueResolvers().Cast<IMemberGetter>().First();

        return mg.MemberInfo;
    }
sgriffinusa
Thanks sgriffinusa. You know, the thing is that the core of my problem is that I need to resolve back a property that has been flattened. In my case, the value of `destinationPropertyname` is `Address.ZipCode` so that will never match any of the source properties directly. I've updated my question to provide more details.
Sandor Drieënhuizen