I have a Silverlight datagrid with a column who's binding is set to a string property on the model. These strings are alphanumeric, so I have created a custom IComparer to sort them appropriately. My question is how can I force the grid to use this custom comparer when sorting by this column?
One of my ideas was perhaps there is some attribute that can be applied on the model's string property that I am binding to, that would explicitly specify the comparer to use when comparing this value with another string?