# FastMapper **Repository Path**: wangfengkun/FastMapper ## Basic Information - **Project Name**: FastMapper - **Description**: 利用MSIL实现实体间的快速转换 - **Primary Language**: C# - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 2 - **Created**: 2016-09-01 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #FastMapper FasterMapper是一个通过表达式树和MSIL实现的可配置的实体转换器。 FastMapper默认采用忽略大小写的属性名作为映射条件。 使用方法: 1.引用FastMapper.dll 2.创建类映射关系 var _mapFunc = FastMap.CreateMap().Compile(); 3.使用生成的委托对类型实例进行转换 AClass a = new AClass(); BClass b = _mapFunc(a); v1.0 beta 2018-06-01 1.支持集合属性 2.支持基本类型间自动转换 3.修改BUG,未配置的属性值为null时,转换出错