I just started to use automapper to map DTOs<->Entities and it seems to be working great.
In some special cases I want to map only some properties and perform additional checks. Without automapper the code looks like this (using fasterflect's PropertyExtensions):
object target;
object source;
string[] changedPropertyNames = { };
foreach (var changedPropertyName in changedPropertyNames)
{
var newValue = source.GetPropertyValue(changedPropertyName);
target.SetPropertyValue(changedPropertyName, newValue);
}
Of course this code won't work if type conversions are required. Automapper uses built-in TypeConverters and I also created some specific TypeConverter implementations.
Now I wonder whether it is possible to map individual properties and use automapper's type conversion implementation, something like this
Mapper.Map(source, target, changedPropertyName);
Update
I think more information is necessary:
I already created some maps, e.g.
Mapper.CreateMap<CalendarEvent, CalendarEventForm>()
and I also created a map with a custom typeconverter for the nullable dateTime property in CalendarEvent, e.g.
Mapper.CreateMap<DateTimeOffset?, DateTime?>().ConvertUsing<NullableDateTimeOffsetConverter>();
I use these maps in a web api OData Controller. When posting new EntityDTOs, I use
Mapper.Map(entityDto, entity);
and save the entity to a datastore.
But if using PATCH
, a Delta<TDto> entityDto
is passed to my controller methods. Therefore I need to call entityDto.GetChangedPropertyNames()
and update my existing persistent entity with the changed values.
Basically this is working with my simple solution, but if one of the changed properties is e.g. a DateTimeOffset
? I would like to use my NullableDateTimeOffsetConverter
.
If I read your question correctly, yes, as long as your destination (target) property matches your conversion.
So if I am going from a
string
to abool
for aStatus
of"A"
or"I"
(active/inactive), I can do something like:And then when going the other direction, convert it back:
A date example:
If you just want to map only some select property than you have to do as below
You can make some projection using MapFrom method - http://automapper.readthedocs.io/en/latest/Projection.html
For example (reffering to AutoMapper documentation):