-
-
Save janierdavila/ea30eb9acd4b0030db33 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static class AutoMapperExtensions | |
| { | |
| public static IMappingExpression<TSource, TDestination> | |
| IgnoreAllNonExisting<TSource, TDestination>(this IMappingExpression<TSource, TDestination> expression) | |
| { | |
| var sourceType = typeof(TSource); | |
| var destinationType = typeof(TDestination); | |
| var existingMaps = Mapper.GetAllTypeMaps().First(x => x.SourceType.Equals(sourceType) && x.DestinationType.Equals(destinationType)); | |
| foreach (var property in existingMaps.GetUnmappedPropertyNames()) | |
| { | |
| expression.ForMember(property, opt => opt.Ignore()); | |
| } | |
| return expression; | |
| } | |
| } | |
| // USAGE: | |
| Mapper.CreateMap<SourceType, DestinationType>() | |
| .ForMember(prop => x.Property, opt => opt.MapFrom(src => src.OtherProperty)) | |
| .IgnoreAllNonExisting(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment