LJN-hzleaper
Results
2
comments of
LJN-hzleaper
I encounter the same problem.
I can remove these columns one by one from output by `Ignore`, but is there a batch way? ``` ExcelMapper mapper = new(); mapper.Ignore(typeof(Dto), nameof(Dto.Id)); mapper.Ignore(typeof(Dto), nameof(Dto.Name)); mapper.AddMapping(typeof(Dto), "Identity", nameof(Dto.Id));...