MiniExcel
MiniExcel copied to clipboard
Add listener mode or Func to handle/edit Query IEnumerable objects, avoiding having to toList first

@shps951023 Maybe I'm misunderstanding this, but since MiniExcel.Query is lazily executed wouldn't this result be achieved by simply appending a Select statement with the desired transformation before the ToList? What would be the advantage/use case for a listener or a Func?
@michelebastione e.g.
config.CallBackFunc = (IDictionary<string,object> row => {
row["TotalReputation"] = row["vip"]?row["Reputation"] * 5:row["Reputation"]
});
It can update or do something else like log in listener before lazy return