Could someone please explain a little more about what aggregate functions are. From what I've read, I think that's what I need to implement the functionality I want, but the documentation doesn't describe a scenario like mine.
I have a typed list that contains, among others, a Quantity field. That typed list is displayed in an Infragistics grid. At the end of my web form, I need to know what the total quantity is for all of the records in the grid.
Should I iterate back through the typed list and count the quantity manually, or is that something an aggregate function would do? I don't really want to make another call to the database either.
Thanks so much for the help!