Average time from database list in C# with ASP MVC?
- by Jacob Huggart
I have a list of times that I have acquired from a sql database and I need to find the average time. I tried just doing list.average() and list.sum(), but neither of those work with timespan lists. What do you all suggest?
btw, time is returned in a hh:mm:ss format.