One of the things I wanted to achieve in Crystal Toolkit release 74 was the ability to sort my generic List<> of images (CrystalImageItem objects). I needed to be able to sort on many different properties within CrystalImageItem, and also to sort in ascending or descending order. Realizing that I probably needed to implement IComparer and IComparable, I decided that was way too much work, and my XBox Achivements score is really ridiculously low. A Google search on the topic lead me to this CodeProject article by Johannes Hansen on Dynamic List sorting. I found his approach intriguing, because he uses Reflection to key on properties within an object and use them as the basis for a compare operation. The resulting sort times are impressive, though I saw a couple of glitches reported on the CodeProject message board. Luckily, another programmer (Marc Brooks) took up the baton and released a C# library that includes a new, improved DynamicComparer. I highly recommend downloading Marc's library as it contains some nifty C# utilities.
Getting DynamicComparer to work was very easy. First, I had to make sure that the properties within the CrystalImageItem object were public, so that Reflection could find them. No problem there, I had four properties, two strings and two dates within CrystalImageItem:
public class CrystalImageItem { public string ImageName ... public string ImageFormatString ... public DateTime LastWriteTime ... public DateTime CreationTime ...
To make it convenient to specify which property I wanted to sort, I created an enumerator called CrystalSortType:
public enum CrystalSortType { ImageName = 0, ImageType = 1, CreationTime = 2, LastWriteTime = 3 }
The CrystalFileCollector is the controller class that manages a CrystalImageGridView and a CrystalImageGridModel. I created a public method called SortCrystalList, which takes a CrystalSortType enumerator, a boolean to indicate ascending or descending sort, and a boolean that tells the controller to redraw the grid (inside CrystalImageGridView) when the sort is completed:
public virtual void SortCrystalList(CrystalSortType sortType, bool ascendingOrder, bool reDrawGrid)
The protected SortCrystalList method translates the enumerator key to a string and calls a final overloaded method:
protected virtual void SortCrystalList(CrystalSortType sortType, bool ascendingOrder) { string orderBy = string.Empty; switch (sortType) { case CrystalSortType.ImageName: orderBy = "ImageName"; break; case CrystalSortType.ImageType: orderBy = "ImageFormatString"; break; case CrystalSortType.CreationTime: orderBy = "CreationTime"; break; case CrystalSortType.LastWriteTime: orderBy = "LastWriteTime"; break; } SortCrystalList(orderBy, ascendingOrder); }
The last version of SortCrystalList takes the string key, adds either ASC or DESC to the string (for ascending or descending sort) and creates the DynamicComparer. The List<CrystalImageItem> object inside the GridModel is sorted according to this key:
protected virtual void SortCrystalList(string orderBy, bool ascendingOrder) { if (_gridModel == null) return; if (ascendingOrder) orderBy += " ASC"; else orderBy += " DESC"; // Create the comparer for Person types and define // the sort fields. DynamicComparer<CrystalImageItem> comparer = new DynamicComparer<CrystalImageItem>(orderBy); // Sort the list. _gridModel.CrystalImageList.Sort(comparer.Compare); }
By default, CrystalFileCollector sorts the internal list by the ImageName property in CrystalImageItem. When the dynamic comparer object is created, the orderBy key looks like "ImageName ASC". If you read Johannes article, you will see that properties can be combined for more interesting sorts like "FirstName, LastName ASC". This is rather like doing a query on your objects, and so far the performance has been really good. You can naturally see that the Linq Project is going to make this sort of thing obsolete, but kudos to Johannes for coming up with this way back in December 2005.
Comments (472)
Very good site. Thanks!!
Posted by disneychannel.com | March 6, 2008 9:05 AM
Posted on March 6, 2008 09:05
Very good site. Thanks!!
Posted by disneychannel.com | March 6, 2008 9:06 AM
Posted on March 6, 2008 09:06
Very good site. Thanks!!
Posted by disneychannel.com | March 6, 2008 10:02 AM
Posted on March 6, 2008 10:02
Nice site. Thanks:-)
Posted by sekas for romeo | March 6, 2008 10:21 AM
Posted on March 6, 2008 10:21
Very good site. Thank you!
Posted by gregory is here owshen billu | March 6, 2008 11:05 AM
Posted on March 6, 2008 11:05
Nice site. Thank you!!
Posted by disney channel.com games for people so fo you | March 6, 2008 11:24 AM
Posted on March 6, 2008 11:24
Good site. Thank you!!
Posted by disney channel.com games for people so fo you | March 6, 2008 12:29 PM
Posted on March 6, 2008 12:29
Cool site. Thank you.
Posted by disneychannel.com | March 6, 2008 1:26 PM
Posted on March 6, 2008 13:26
Nice site. Thank you!!!
Posted by fin a la finite | March 6, 2008 3:02 PM
Posted on March 6, 2008 15:02
Good site. Thanks!!
Posted by gregory is here owshen billu | March 6, 2008 3:38 PM
Posted on March 6, 2008 15:38
some soma online
Posted by soma make online | March 8, 2008 3:23 PM
Posted on March 8, 2008 15:23
meridia xenical
Posted by meridia is | March 19, 2008 4:37 AM
Posted on March 19, 2008 04:37
meridia xenical
Posted by meridia is | March 19, 2008 4:37 AM
Posted on March 19, 2008 04:37
with alprazolam
Posted by alprazolam effect | March 19, 2008 2:46 PM
Posted on March 19, 2008 14:46
with alprazolam
Posted by alprazolam effect | March 19, 2008 2:46 PM
Posted on March 19, 2008 14:46
Useful site. Thanks:-)
Posted by hydrocodone | March 19, 2008 3:41 PM
Posted on March 19, 2008 15:41
Useful site. Thanks:-)
Posted by hydrocodone | March 19, 2008 3:41 PM
Posted on March 19, 2008 15:41
Cool site. Thanks:-)
Posted by buy tramadol | March 19, 2008 4:14 PM
Posted on March 19, 2008 16:14
Good site. Thanks:-)
Posted by buy tramadol | March 19, 2008 4:45 PM
Posted on March 19, 2008 16:45
Good site. Thanks:-)
Posted by buy tramadol | March 19, 2008 4:46 PM
Posted on March 19, 2008 16:46
Nice site. Thanks.
Posted by buy lipitor | March 19, 2008 6:00 PM
Posted on March 19, 2008 18:00
Cool site. Thank you!
Posted by lipitor | March 19, 2008 7:13 PM
Posted on March 19, 2008 19:13
Cool site. Thank you!
Posted by lipitor | March 19, 2008 7:13 PM
Posted on March 19, 2008 19:13
Very good site. Thank you!!
Posted by cheap hydrocodone | March 19, 2008 8:13 PM
Posted on March 19, 2008 20:13
Very good site. Thank you!!
Posted by cheap hydrocodone | March 19, 2008 8:13 PM
Posted on March 19, 2008 20:13
Useful site. Thank you!!
Posted by lipitor | March 19, 2008 8:55 PM
Posted on March 19, 2008 20:55
Useful site. Thank you!!
Posted by lipitor | March 19, 2008 8:56 PM
Posted on March 19, 2008 20:56
Very good site. Thank you.
Posted by lipitor | March 19, 2008 9:43 PM
Posted on March 19, 2008 21:43
Very good site. Thank you.
Posted by lipitor | March 19, 2008 9:43 PM
Posted on March 19, 2008 21:43
Cool site. Thank you!
Posted by soma online | March 19, 2008 10:36 PM
Posted on March 19, 2008 22:36
Cool site. Thank you!
Posted by soma online | March 19, 2008 10:36 PM
Posted on March 19, 2008 22:36
Cool site. Thank you.
Posted by how to make account | March 19, 2008 11:33 PM
Posted on March 19, 2008 23:33
Cool site. Thanks!!
Posted by how to make account | March 20, 2008 12:32 AM
Posted on March 20, 2008 00:32
Cool site. Thanks!!
Posted by how to make account | March 20, 2008 12:32 AM
Posted on March 20, 2008 00:32
Nice site. Thank you!!!
Posted by tramadol online | March 20, 2008 12:42 AM
Posted on March 20, 2008 00:42
Nice site. Thank you!!!
Posted by tramadol online | March 20, 2008 12:43 AM
Posted on March 20, 2008 00:43
Useful site. Thanks:-)
Posted by buy tramadol | March 20, 2008 12:56 AM
Posted on March 20, 2008 00:56
Useful site. Thank you!
Posted by cheap order tramadol | March 20, 2008 1:01 AM
Posted on March 20, 2008 01:01
Useful site. Thank you!
Posted by cheap order tramadol | March 20, 2008 1:02 AM
Posted on March 20, 2008 01:02
Useful site. Thanks!!
Posted by buy lipitor | March 20, 2008 1:03 AM
Posted on March 20, 2008 01:03
Useful site. Thanks!!
Posted by buy lipitor | March 20, 2008 1:03 AM
Posted on March 20, 2008 01:03
Good site. Thank you.
Posted by lipitor | March 20, 2008 2:04 AM
Posted on March 20, 2008 02:04
Good site. Thank you.
Posted by lipitor | March 20, 2008 2:04 AM
Posted on March 20, 2008 02:04
Good site. Thank you!!
Posted by buy lipitor | March 20, 2008 2:44 AM
Posted on March 20, 2008 02:44
Good site. Thank you!!
Posted by buy lipitor | March 20, 2008 2:44 AM
Posted on March 20, 2008 02:44
Cool site. Thanks.
Posted by buy xanax online | March 20, 2008 3:23 AM
Posted on March 20, 2008 03:23
Cool site. Thanks.
Posted by buy xanax online | March 20, 2008 3:23 AM
Posted on March 20, 2008 03:23
Cool site. Thanks!!!
Posted by buy lipitor | March 20, 2008 4:28 AM
Posted on March 20, 2008 04:28
Cool site. Thanks!!!
Posted by buy lipitor | March 20, 2008 4:28 AM
Posted on March 20, 2008 04:28
Very good site. Thanks!!
Posted by buy vicodin | March 20, 2008 5:11 AM
Posted on March 20, 2008 05:11
Very good site. Thanks!!
Posted by buy vicodin | March 20, 2008 5:11 AM
Posted on March 20, 2008 05:11
Good site. Thanks!!
Posted by cheap valium | March 20, 2008 5:36 AM
Posted on March 20, 2008 05:36
Very good site. Thanks.
Posted by buy valium | March 20, 2008 5:50 AM
Posted on March 20, 2008 05:50
Cool site. Thanks:-)
Posted by lipitor | March 20, 2008 6:55 AM
Posted on March 20, 2008 06:55
Cool site. Thanks:-)
Posted by lipitor | March 20, 2008 6:56 AM
Posted on March 20, 2008 06:56
Very good site. Thank you:-)
Posted by buy lipitor | March 20, 2008 7:11 AM
Posted on March 20, 2008 07:11
Very good site. Thanks:-)
Posted by lipitor | March 20, 2008 8:11 AM
Posted on March 20, 2008 08:11
Very good site. Thanks:-)
Posted by lipitor | March 20, 2008 8:11 AM
Posted on March 20, 2008 08:11
Cool site. Thanks:-)
Posted by buy lipitor | March 20, 2008 8:11 AM
Posted on March 20, 2008 08:11
Useful site. Thanks.
Posted by buy lipitor | March 20, 2008 8:26 AM
Posted on March 20, 2008 08:26
Good site. Thanks!!
Posted by lipitor | March 20, 2008 10:32 AM
Posted on March 20, 2008 10:32
Useful site. Thank you!!!
Posted by cheap xanax oline | March 20, 2008 10:59 AM
Posted on March 20, 2008 10:59
Useful site. Thank you!!!
Posted by cheap xanax oline | March 20, 2008 11:00 AM
Posted on March 20, 2008 11:00
Very good site. Thank you!
Posted by buy cheap soma | March 20, 2008 12:14 PM
Posted on March 20, 2008 12:14
Good site. Thank you!
Posted by buy cheap tadalafil | March 20, 2008 12:37 PM
Posted on March 20, 2008 12:37
Good site. Thank you!
Posted by buy cheap tadalafil | March 20, 2008 12:37 PM
Posted on March 20, 2008 12:37
Good site. Thanks:-)
Posted by buy soma | March 20, 2008 12:50 PM
Posted on March 20, 2008 12:50
Cool site. Thank you:-)
Posted by lipitor online | March 20, 2008 1:34 PM
Posted on March 20, 2008 13:34
Cool site. Thank you:-)
Posted by lipitor online | March 20, 2008 1:34 PM
Posted on March 20, 2008 13:34
Nice site. Thanks!!!
Posted by order lipitor | March 20, 2008 1:47 PM
Posted on March 20, 2008 13:47
Nice site. Thanks!!!
Posted by order lipitor | March 20, 2008 1:47 PM
Posted on March 20, 2008 13:47
Very good site. Thank you!
Posted by buy tramadol | March 20, 2008 3:09 PM
Posted on March 20, 2008 15:09
Very good site. Thank you!
Posted by buy tramadol | March 20, 2008 3:09 PM
Posted on March 20, 2008 15:09
Good site. Thank you!!!
Posted by lipitor cheap price | March 20, 2008 3:28 PM