donnytian / Npoi.Mapper

Use this tool to import or export data with Excel file. The tool is a convention based mapper between strong typed object and Excel data via NPOI.
MIT License
589 stars 114 forks source link

在Mapping的配置委托中,能否加入IRow的信息 #89

Closed LostAsk closed 3 years ago

LostAsk commented 3 years ago

场景: 需要在表格插入图片.目前少了 IRow的信息,如果有了这个信息,可以把图片插入指定位置了

///目前少了 IRow的信息,
 public static Mapper Map<T>(this Mapper mapper, string columnName, Expression<Func<T, object>> propertySelector, Func<IColumnInfo, object, bool> tryTake = null, Func<IColumnInfo, object, bool> tryPut = null);