Is it possible to use AutoMapper or ValueInjecter to map a Source Property to a Target Method?

400 Views Asked by At

I am trying to map a simple, plain source object to a destination object which implements an interface (IFeatureClass) and only has a public method named SetValue(index, value) for setting the destination 'properties'.

I want to be able to dynamically map my objects (DTOs/BOs) to objects implementing IFeatureClass. The index of the field can be found using another method of the interface called FindField(string fieldname) which returns the index of the field.

Do you think that it is possible to use AutoMapper or ValueInjecter to do this kind of job. Or is there any Pattern or something out there which will help me to do this? If so, could you please tell me how to do it? I checked the documentations and existing examples, but I can't find an example that matches my need.

Regards, Christian

1

There are 1 best solutions below

2
On

I use Automapper to do this now. It works great. It haven't come across two objects I could map with it.