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()) | |
| { |
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
| using System; | |
| using System.Diagnostics; | |
| using System.IO; | |
| using System.Net; | |
| using System.Text; | |
| using AgFx; | |
| using RestSharp; | |
| using RestSharp.Authenticators; | |
| namespace Librarian.AgFx |