The final, compiled map for a certain source and destination type.
コード例 #1
0
ファイル: ProposedMap.cs プロジェクト: JulianR/MemberMapper
        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;
        }