The final, compiled map for a certain source and destination type.
Пример #1
0
        public MemberMap FinalizeMap()
        {
            var map = new MemberMap();

              map.SourceType = this.SourceType;
              map.DestinationType = this.DestinationType;
              map.MappingFunction = this.MapGenerator.GenerateMappingFunction(this);

              mapper.RegisterMap(map);

              return map;
        }