To improve performance/scalability of a WinForms app, I would like to defer calculation of fields that are not visible in the grid until they are needed.
Looking for ideas on how this can be done in .NET 2.0.
One idea inspired by this post is to attach a DataSource object that supports ITypedList. However ITypedList interface seems awkward for this use as it provides a column rather than row view of the data.
Cheers