Sort = new IgbColumnSortConfiguration
{
/**
* For string data types controls whether the sort operations for this column will be case sensitive.
* By default, sort operations for string types are case insensitive.
*/
CaseSensitive = true,
/**
* Custom comparer function which will be used for sort operations for this column.
*
* In the following sample, we compare the `Name` values based on their length.
*/
Comparer = (a, b) => ((string)a).Length - ((string)b).Length
}