For the following datatable column, what is the fastest way to get the min and max values?
AccountLevel
0
1
2
3
|
|
Yes, this really is the fastest way. Using the Linq |
|||||||||||
|
|
Easiar approach on datatable could be:
|
|||||
|
|
Use LINQ. It works just fine on datatables, as long as you convert the rows collection to an IEnumerable.
Edited to fix syntax; it's tricky when using LINQ on DataTables, and aggregating functions are fun, too. Yes, it can be done with one query, but you will need to generate a list of results, then use .Min() and .Max() as aggregating functions in separate statements. |
|||||||||||
|
|
The most efficient way to do this (believe it or not) is to make two variables and write a |
|||
|
|
1 iteration, linq style :) |
|||
|
another way of doing this is
I am not sure on the performace part but this does give the correct output |
||||
|
|
|
I don't know how my solution compares performance wise to previous answers. I understand that the initial question was: What is the fastest way to get min and max values in a DataTable object, this may be one way of doing it:
It's an easy way of achieving the same result without looping. But performance will need to be compared with previous answers. Thought I love Cylon Cats answer most. |
||||
|
|